Installation
Prerequisites
Clone and build
git clone https://github.com/catesandrew/work-loom.git
cd work-loom
pnpm install
pnpm build
This builds all 9 packages and 3 apps (API server, CLI, web app) using Turborepo.
Run the dev stack
Start the API server and web app in development mode:
pnpm dev
| Service | URL |
|---|---|
| API server | http://localhost:3001 |
| Web app | http://localhost:3000 |
Install the CLI locally
The CLI is available as a workspace package. After building:
# Run directly via pnpm
pnpm --filter @workloom/cli exec wl --help
# Or link it globally for convenience
cd apps/cli
pnpm link --global
wl --help
Verify installation
# Check the API is running
curl http://localhost:3001/health
# Check the CLI works
wl --version
wl --help
You should see the health check respond with {"status":"ok"} and the CLI print its version and available commands.