Files
homeschool/.gitignore
derekc 417b3adfe8 Initial project scaffold
Full-stack homeschool web app with FastAPI backend, Vue 3 frontend,
MySQL database, and Docker Compose orchestration. Includes JWT auth,
WebSocket real-time TV dashboard, schedule builder, activity logging,
and multi-child support.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-27 22:56:56 -08:00

28 lines
325 B
Plaintext

# Environment — never commit real secrets
.env
# Python
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
.pytest_cache/
# Node / frontend
node_modules/
frontend/dist/
frontend/.vite/
# Alembic generated (keep versions dir, ignore cache)
backend/alembic/__pycache__/
# OS
.DS_Store
Thumbs.db
# IDE
.vscode/
.idea/
*.swp