14 lines
794 B
Markdown
14 lines
794 B
Markdown
# Scripts
|
|
|
|
Use these root-level commands for day-to-day work:
|
|
|
|
- `scripts/dev-start.sh`: start the local platform API, run worker, and platform_web console.
|
|
- `scripts/dev-smoke.sh`: seed and verify the API-backed local plugin/server fixtures.
|
|
- `scripts/dev-stop.sh`: stop the managed local debug stack.
|
|
- `scripts/dev-reset.sh`: stop the stack and delete only the safe local debug data root.
|
|
- `scripts/browser-acceptance.sh`: run the full self-starting browser acceptance suite.
|
|
- `scripts/check-structure.sh`: verify required repository structure.
|
|
- `scripts/check-all.sh`: run structure, backend, frontend, and plugin checks.
|
|
|
|
Implementation details for the managed local stack live under `scripts/local-debug/`. Prefer the root commands above instead of calling those internals directly.
|