26 lines
236 B
Plaintext
26 lines
236 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Secrets (CRITICAL: Do not bake .env files into the image!)
|
|
.env
|
|
.env.*
|
|
|
|
# Docker
|
|
Dockerfile
|
|
.dockerignore
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*~
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# IDEs / Editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|