- Copy config.py to config.example.py as template (tracked in git) - Add config.py to .gitignore (local config per developer) - Update README.md with configuration setup instructions - Fix outdated references (TinyDB -> SQLite, add missing files) - Persist goal selection across task and note pages
32 lines
278 B
Plaintext
32 lines
278 B
Plaintext
# Database
|
|
data/
|
|
|
|
# Virtual environment
|
|
.venv/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# uv
|
|
uv.lock
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Configuration (each developer must create their own)
|
|
config.py
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|