docs: add docs folder (architecture, developer, usage); update README; wire probe TTL cache + concurrency notes into docs
This commit is contained in:
26
docs/usage/quickstart.md
Normal file
26
docs/usage/quickstart.md
Normal file
@@ -0,0 +1,26 @@
|
||||
# Quick Start
|
||||
|
||||
## Compose
|
||||
```bash
|
||||
docker compose up -d --build
|
||||
```
|
||||
|
||||
Full stack with observability:
|
||||
```bash
|
||||
docker compose -f docker-compose.yml -f observability/docker-compose.yml up -d --build
|
||||
```
|
||||
|
||||
## Local Dev (minimal)
|
||||
- Start NATS locally
|
||||
- Run services:
|
||||
```bash
|
||||
cargo run -p aggregate
|
||||
cargo run -p projection
|
||||
cargo run -p runner
|
||||
cargo run -p gateway
|
||||
```
|
||||
|
||||
## Verify
|
||||
- Gateway: GET /health, /ready, /metrics
|
||||
- Projection: GET /health, /ready, /metrics
|
||||
- Runner: GET /health, /ready, /metrics
|
||||
Reference in New Issue
Block a user