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>
27 lines
202 B
Plaintext
27 lines
202 B
Plaintext
# ---> Go
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.test
|
|
*.out
|
|
# vendor/
|
|
go.work
|
|
go.work.sum
|
|
|
|
# env file
|
|
.env
|
|
|
|
# Local database
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Go binary
|
|
/walkies
|
|
|
|
# Node
|
|
web/node_modules/
|
|
web/build/
|