Skip to content

Commit

Permalink
Update .gitignore to exclude specific files while preserving necessar…
Browse files Browse the repository at this point in the history
…y configurations
  • Loading branch information
Kaeytee committed Oct 31, 2024
1 parent 5573664 commit c226bd7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@

# Ignore virtual environment directories
venv/
env/
# Ignore everything in the env folder except config.py
env/*
!env/config.py

# Ignore Python cache files
__pycache__/
Expand All @@ -33,3 +35,7 @@ nohup.out
# Ignore IDE-specific files (e.g., for VSCode or PyCharm)
.vscode/
.idea/

# Ignore everything in the templates folder except the html directory
templates/*
!templates/html/

0 comments on commit c226bd7

Please sign in to comment.