61 lines
569 B
Plaintext
61 lines
569 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
instance/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
|
|
# Node modules (if any)
|
|
node_modules/
|
|
|
|
# Cache
|
|
.cache/
|
|
.pytest_cache/
|
|
|
|
# Documentation
|
|
README.md
|
|
docs/
|
|
|
|
# Start script (not needed in container)
|
|
start.py
|
|
main.py
|
|
pyproject.toml
|
|
.python-version
|