- Rewrote README.md with full step-by-step setup guide covering Docker Compose deployment, environment configuration, port reference, local dev setup, and reset instructions - Added backend/.env.example and frontend/.env.local.example so new deployers know exactly what to configure without any secrets committed - Updated .gitignore to allow .env.example files through Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
45 lines
475 B
Text
45 lines
475 B
Text
# Dependencies
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Build outputs
|
|
.next/
|
|
out/
|
|
dist/
|
|
build/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Environment files — NEVER commit these
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
# But do commit example templates
|
|
!.env.example
|
|
!.env.local.example
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
*.log
|
|
|
|
# Claude Code local settings
|
|
.claude/
|
|
|
|
# TypeScript build cache
|
|
*.tsbuildinfo
|
|
|
|
# Next.js auto-generated type file
|
|
next-env.d.ts
|