Files
website/.gitignore
whitlocktech 6f55c516c7 Document full-stack setup; fix dev proxy; drop stray temp script
- README rewritten for the completed frontend: full setup/run instructions
  (Docker Compose, local dev with hot reload, prod build), pages/routes,
  API endpoints, and a consolidated environment-variable reference
- Vite dev proxy now targets 127.0.0.1 (avoids the Windows IPv6-localhost
  pitfall where the SPA could not reach the IPv4-bound API)
- Remove server/_setup.ps1 (a scratch script accidentally committed in the
  previous frontend commit) and gitignore _*.ps1 scratch files

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-27 02:14:44 -05:00

36 lines
441 B
Plaintext

# dependencies
node_modules/
client/node_modules/
server/node_modules/
# build output
client/dist/
# env / secrets
.env
*.env
!.env.example
# runtime data
server/uploads/
uploads/
server/logs/
logs/
# reference material (extracted from the provided archives)
_reference/
# logs / os
*.log
npm-debug.log*
.DS_Store
Thumbs.db
# editor / tooling local settings
.claude/settings.local.json
.vscode/
.idea/
# scratch / temp scripts
_*.ps1