Include instance folder in git and improve setup
- 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
This commit is contained in:
8
.gitignore
vendored
8
.gitignore
vendored
@@ -2,8 +2,9 @@
|
||||
venv/
|
||||
.venv/
|
||||
|
||||
# Flask instance folder
|
||||
instance/
|
||||
# Flask instance folder - keep the folder but ignore sensitive files
|
||||
instance/flask_secret_key
|
||||
instance/*.log
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
@@ -12,8 +13,7 @@ __pycache__/
|
||||
*.pyd
|
||||
.Python
|
||||
|
||||
# Database files
|
||||
*.db
|
||||
# Database WAL files (keep main .db file)
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
|
||||
|
||||
Reference in New Issue
Block a user