34 lines
345 B
Plaintext
34 lines
345 B
Plaintext
### Python
|
||
__pycache__/
|
||
*.py[cod]
|
||
*$py.class
|
||
*.pyo
|
||
*.pyd
|
||
.Python
|
||
*.egg-info/
|
||
.eggs/
|
||
dist/
|
||
build/
|
||
|
||
### Virtual environments
|
||
.venv/
|
||
venv/
|
||
ENV/
|
||
|
||
### IDEs
|
||
.vscode/
|
||
.idea/
|
||
|
||
### OS
|
||
Thumbs.db
|
||
Desktop.ini
|
||
.DS_Store
|
||
|
||
### Secrets / local env
|
||
.env
|
||
|
||
### App data (don’t commit runtime db/uploads)
|
||
instance/*.db
|
||
static/uploads/*
|
||
!static/uploads/readme.txt
|