39 lines
437 B
Plaintext
39 lines
437 B
Plaintext
# Environments
|
|
.env
|
|
|
|
# Data, Logs, and Reports
|
|
data/
|
|
*.db
|
|
*.db.bkp
|
|
*.sql
|
|
*.csv
|
|
*.txt
|
|
|
|
# Exclude standard text files that should be versioned if any (like requirements.txt, readme)
|
|
!requirements.txt
|
|
!README.txt
|
|
|
|
# Old directories
|
|
old/
|
|
old_app/
|
|
|
|
# Python caching
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Virtual environments
|
|
.env/
|
|
.venv/
|
|
env/
|
|
venv/
|