e499ce884d
- Go backend: config, db (PostgreSQL migrations), auth (argon2id + sessions), middleware (cookie sessions, RequireAuth), chi router, cmd/server - React frontend: Vite + React 18 + TS + Tailwind + Gruvbox palette + terminal CSS - Docker: compose.yml (Postgres, Valkey, minio, LiveKit, coturn, Caddy), livekit.yaml, Caddyfile, Dockerfile (multi-stage Go+Node+Alpine) - .env.example, .gitignore, README.md
40 lines
308 B
Plaintext
40 lines
308 B
Plaintext
# Binaries
|
|
dumpster-server
|
|
dumpster-tui
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Go
|
|
vendor/
|
|
*.test
|
|
*.out
|
|
coverage.html
|
|
|
|
# Node
|
|
node_modules/
|
|
dist/
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker volumes
|
|
postgres_data/
|
|
valkey_data/
|
|
minio_data/
|