goalsbreakdown/.gitignore
Yuyao Huang 2629e8f2cd feat: move config.py to config.example.py, exclude config.py from git tracking
- 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
2026-05-09 10:12:37 +08:00

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