initial commit
All checks were successful
Build and Publish TechDocs / build-and-publish (push) Successful in 1m7s

Change-Id: Iab83de2c9c79a2a840d9542861ba95f82412d1bd
This commit is contained in:
Scaffolder
2026-04-22 13:49:15 +00:00
commit 15afe77546
16 changed files with 1396 additions and 0 deletions

23
README.md Normal file
View File

@@ -0,0 +1,23 @@
# test-cicd-deeplink
> **System-of-Record branch** — application code lives on `dev`.
| Branch | Purpose |
|-----------|---------|
| `dev` | Inner loop — push freely, deploys to dev env automatically |
| `staging` | Staging env — promoted from dev via PR (CI gate + 1 approval) |
| `prod` | Production — promoted from staging via PR (CI gate + 1 approval) |
| `main` | System of record — receives merges from prod after releases |
## Platform CI/CD
Workflows in `.gitea/workflows/` are **runtime-agnostic** — they read
`.platform/config.yaml` at run-time to determine build toolchain, container
port, and health endpoint. No workflow files need updating when this service
is migrated to a different runtime.
| Config key | Value |
|------------|-------|
| `runtime` | `java-springboot` |
| `health_path` | `/actuator/health` |
| `container_port` | `8080` |