Daily Operations Runbook
Typical Daily Loop
flowchart TD
Start[Start day] --> Pull[Pull repositories]
Pull --> Up[Start selected mode]
Up --> Work[Develop and test]
Work --> Profile[Adjust active profile]
Profile --> Work
Work --> Stop[Stop stack and compose down]
Command Cheat Sheet
- Start manage stack:
./up
- Start plan stack:
./up --mode=plan
- Pull clean repos:
./pull
- Start only DB:
./db
- Start only MQ:
./mq
- Clean reset:
./reset
Safe Practices
- Use focused profiles to reduce startup time.
- Pull often to reduce merge drift in cloned repos.
- Reset when debugging stateful inconsistencies.