- Updated .gitignore to include instance folder but exclude sensitive files - Added instance/README.md with setup instructions - Updated setup script with better configuration examples - Instance folder will now be tracked in git to preserve quotes.db
29 lines
309 B
Plaintext
29 lines
309 B
Plaintext
# Virtual Environment
|
|
venv/
|
|
.venv/
|
|
|
|
# Flask instance folder - keep the folder but ignore sensitive files
|
|
instance/flask_secret_key
|
|
instance/*.log
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
|
|
# Database WAL files (keep main .db file)
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS
|
|
.DS_Store
|