Yusuf Isahyuscode.hashnode.dev·Aug 27, 2024Chapter 4 - GitignoreWhat is Gitignore? Gitignore is a file in Git repositories that tells Git which files or directories to ignore and not track. It's a crucial file for managing your project's repository, ensuring that unnecessary files don't clutter your version contr...DiscussGitGit
Goran Tomasicdigiden.dev·Aug 24, 2024Python Project Setup: Laying the Groundwork for Coding GreatnessOkay, let's dive into the sometimes-overlooked but oh-so-crucial world of Python project setup. We all love jumping straight into the code, but a solid foundation can make all the difference between a smooth development journey and a frustrating mess...DiscussPython
Byung Joo Jeongjoo.hashnode.dev·Jul 26, 2024BookStore Spring - .env file setup / .env configuration with application.ymlForeword After I created Spring Boot Project, and linked it to remote repositories. For DB connection and other configuration (will add JWT, cookie, Email and etc), I want to enclose private information. Using .env file can be useful for it. ( .env +...Discuss.env
Shahab Movahhediblog.shmovahhedi.com·Jun 16, 2024My .gitignore for Node# Secrets [Ss]ecret.* *.sql *.env *.env.* !*.env.template !*.env.*.template *.local # Setup samples !/setup # Temps **/[Tt]emp **/[Tt]emps **/.DS_Store **/._.DS_Store vite.config.*.timestamp-* *.log yarn-error.log # Packages node_modules node_modu...Discuss·1 likegitignore
Kaurani Divya D.divyakaurani.hashnode.dev·Jun 12, 2024Building StreamIt! with Docker, FFmpeg, and RTMPIn this blog, I will share my journey of creating a streaming application called StreamIt! The project uses Docker, FFmpeg, and RTMP protocols to enable users to live stream directly to YouTube, manage the stream, and download the recorded sessions. ...Discuss·1 like·39 readsdivya kaurani
Triviawaves Mediatriviawavesmedia.hashnode.dev·May 16, 2024Easy Steps to Set Up a Terraform .gitignore File in VSCodeWhat is Terraform? Terraform is an open-source infrastructure as code (IaC) tool that allows users to define and provision a data center infrastructure using a declarative configuration language. It enables users to create, modify, and manage infrast...DiscussTerraform
Marcia Satiebetweentags.hashnode.dev·May 10, 2024Creating a .NET git ignore file using the Command windowSometimes, working with Visual Studio 2022 and Git I end up getting the horrible "Fatal Error" all the time I tried to commit my project. To solve that I had to create a new git ignore file containing dotnet related files. Here is the steps about how...Discuss·1 likevisual studio
Oyindamola Abolajioyinabolaji.hashnode.dev·May 6, 2024March ReflectionsIntroduction: March has been a month of continuous learning in my role as a frontend developer intern. As I built upon the knowledge gained in previous months, I delved into new concepts and tools, expanding my skill set and deepening my understandin...Discussinternship
Abdullah Bin Altafdevopswithabdullah.hashnode.dev·Feb 24, 2024Lecture # 14 - GitignoreGitignore: The .gitignore file is a text file used by Git to specify intentionally untracked files that Git should ignore. These files are typically generated as part of the build process, contain sensitive information, or are specific to a developer...DiscussDevops
She Code Africa NairobiforShe Code Africa Nairobiscanairobi.hashnode.dev·Dec 20, 2023Gitignore File and Its Relevance to Your Git RepositoryPhoto by AltumCode on Unsplash .gitignore File and its relevance to your Git Repository. Introduction. Git is a version control tool widely used as a version control system for code. When working on your project locally, and making commits to a remo...Discuss·41 readsGit