Scaffold full-stack volunteer scheduling application

Go backend with domain-based packages (volunteer, schedule, timeoff,
checkin, notification), SQLite storage, JWT auth, and chi router.
React TypeScript frontend with routing, auth context, and pages for
all core features. Multi-stage Dockerfile and docker-compose included.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-05 11:25:02 -04:00
parent 64f4563bfa
commit 4989ff1061
49 changed files with 19996 additions and 12 deletions

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
services:
walkies:
build: .
ports:
- "8080:8080"
volumes:
- walkies-data:/app/data
environment:
DATABASE_DSN: /app/data/walkies.db
JWT_SECRET: change-me-in-production
PORT: "8080"
STATIC_DIR: /app/web/dist
volumes:
walkies-data: