45 lines
391 B
Plaintext
45 lines
391 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
.venv
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Config (contains secrets - use .example for templates)
|
|
config/config.yaml
|
|
config/*.local.yaml
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Media temp
|
|
/tmp/fam_media/
|
|
*.mp4
|
|
*.jpg
|
|
*.jpeg
|
|
*.png
|
|
|
|
# Streamlit
|
|
.streamlit/secrets.toml
|
|
|
|
# Env
|
|
.env
|
|
.env.local
|