Some checks are pending
Build Ghidra Plugin / build (push) Waiting to run
Starlight/Astro docs site following the warehack.ing cookie-cutter pattern. Landing page with architecture overview, getting-started guide with install and firmware import examples, Docker reference with env vars and port pool docs, and MCP tools reference. Warm amber/rust color scheme. Caddy prod + Node dev Docker stages.
14 lines
170 B
Makefile
14 lines
170 B
Makefile
.PHONY: prod dev down logs
|
|
|
|
prod:
|
|
docker compose up -d --build
|
|
|
|
dev:
|
|
docker compose --profile dev up --build
|
|
|
|
down:
|
|
docker compose down
|
|
|
|
logs:
|
|
docker compose logs -f
|