24 lines
272 B
Plaintext
24 lines
272 B
Plaintext
# Ignore Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Ignore Data Directories (CRITICAL for build speed and permissions)
|
|
srv/
|
|
logs/
|
|
temp/
|
|
tmp/
|
|
backups/
|
|
|
|
# Ignore Environment Files
|
|
.env
|
|
.env.*
|
|
*.env
|
|
|
|
# Ignore IDE settings
|
|
.vscode/
|
|
*.code-workspace
|
|
|
|
# Ignore miscellaneous
|
|
README.md
|
|
gunicorn.ctl
|