Initial dev deployment [infra]

This commit is contained in:
Stephan D
2026-03-16 13:18:22 +01:00
parent 260e514957
commit 311d080aa5
91 changed files with 432 additions and 523 deletions

View File

@@ -110,6 +110,19 @@ make test-backend # Run Go backend tests only
make test-frontend # Run Flutter tests only
```
## Release Flow
- Pushes to `main` build and deploy changed application services to the dev server.
- Tags matching `v*` trigger a full production rebuild and deployment from that exact tagged revision.
- Infrastructure workflows for `db` and `nats` remain separately controlled.
Example production release:
```bash
git tag -a v1.4.0 <commit-sha>
git push origin v1.4.0
```
### Backend CI Bypass Tags
Backend Woodpecker module pipelines now run both lint and tests before image build/deploy.