73 lines
No EOL
744 B
Text
73 lines
No EOL
744 B
Text
# Python bytecode
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Distribution / packaging
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Flask
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# Environment variables
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Database files
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Upload folder
|
|
uploads/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# OS specific files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# IDE specific files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
|
|
# Coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
|
|
# Local development configurations
|
|
local_settings.py |