- Created flowcharts for Infra adapters, artifacts, high-level process, models, and tests in the DOCS/diagrams directory. - Added a mkdocs.yml configuration file for documentation site setup.
9 lines
235 B
Plaintext
9 lines
235 B
Plaintext
sequenceDiagram
|
|
participant Dev as Developer
|
|
participant CI as CI
|
|
participant Stg as Staging
|
|
Dev->>CI: push + smoke tests (dry-run)
|
|
CI->>CI: prefetch models
|
|
CI->>Stg: deploy + integration tests
|
|
Stg-->>Dev: results & logs
|