80fc813b61
Layer a staging overlay (docker-compose.staging.yml) on the base compose file: same Linux images and Production runtime as prod, differing only in the dev banner, capped sync, shifted ports (18080/18081), and an isolated project namespace so it never touches prod data. Wire -Staging into deploy/up.ps1 and deploy/down.ps1, add .env.staging.example, and track that template in git. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
70 lines
608 B
Plaintext
70 lines
608 B
Plaintext
## .NET
|
|
bin/
|
|
obj/
|
|
*.user
|
|
*.suo
|
|
.vs/
|
|
artifacts/
|
|
|
|
## Rider / VS
|
|
.idea/
|
|
|
|
## Node / Vite
|
|
node_modules/
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
|
|
## Env & secrets
|
|
.env
|
|
.env.local
|
|
*.pfx
|
|
appsettings.*.local.json
|
|
secrets.json
|
|
|
|
## Logs
|
|
logs/
|
|
*.log
|
|
|
|
## OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ── GSD baseline (auto-generated) ──
|
|
.gsd
|
|
.gsd-worktrees/
|
|
.gsd-id
|
|
.mcp.json
|
|
.bg-shell/
|
|
nul
|
|
nul.*
|
|
con
|
|
con.*
|
|
prn
|
|
prn.*
|
|
aux
|
|
aux.*
|
|
com[1-9]
|
|
com[1-9].*
|
|
lpt[1-9]
|
|
lpt[1-9].*
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.vscode/
|
|
*.code-workspace
|
|
.env.*
|
|
!.env.example
|
|
!.env.staging.example
|
|
.next/
|
|
dist/
|
|
build/
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
venv/
|
|
target/
|
|
vendor/
|
|
coverage/
|
|
.cache/
|
|
tmp/
|