| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # Git
- .git
- .gitignore
- # Python
- __pycache__
- *.pyc
- *.pyo
- venv/
- .venv/
- *.egg-info/
- .pytest_cache/
- # Node
- node_modules/
- frontend/node_modules/
- # Build artifacts
- frontend/dist/
- *.log
- # IDE
- .idea/
- .vscode/
- *.swp
- # Environment
- .env
- .env.local
- backend/.env
- # Database
- *.db
- *.sqlite
- # Kiro specs
- .kiro/
- # OS
- .DS_Store
- Thumbs.db
|