Files
budget-tracker/.gitignore
T
Nox (OpenClaw) d8c2048a9b chore: initial project setup
Phase 0 — full project scaffold with:
- Backend: FastAPI + SQLAlchemy 2.0 async + Alembic + PostgreSQL 16
- Frontend: React 18 + TypeScript + Vite + Tailwind CSS + shadcn/ui
- Docker Compose (prod + dev override with hot-reload)
- Health endpoint, CORS config, API proxy, env template

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-17 15:20:50 +00:00

33 lines
244 B
Plaintext

# Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
.venv/
venv/
# Node
node_modules/
frontend/dist/
# Environment
.env
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Docker
pgdata/
# Testing
.coverage
htmlcov/
.pytest_cache/