clarc/justfile
Jared Miller 62a264c62a
Add npm scripts and justfile for development workflow
Scripts cover linting, type checking, testing, and dev server.
Justfile provides docker commands and unified check command.
2026-01-28 10:59:07 -05:00

23 lines
275 B
Makefile

default:
@just --list
dev:
bun run dev
start:
bun run start
check:
bun run lint && bun run typecheck && bun run test
build:
docker build -t claude-remote .
up:
docker compose up -d
down:
docker compose down
logs:
docker compose logs -f