production_app / .gitignore
rchrdgwr's picture
Add .gitignore file
278ff72
raw
history blame
333 Bytes
# Ignore Python compiled files
*.pyc
*.pyo
__pycache__/
# Ignore environment variables and sensitive files
.env
.secret
# Ignore IDE-specific files (for example, VSCode)
.vscode/
.idea/
# Ignore log files
*.log
# Ignore system-specific files
.DS_Store
Thumbs.db
# Ignore the data folder
/data/
# Ignore the cache folder
/cache/