Files
triggershell/app/README.md
T

22 lines
1020 B
Markdown
Raw Normal View History

2026-08-15 18:37:30 +02:00
# TriggerShell web app
This directory is both the Next.js app and the home of the `triggershell` CLI (`bin/triggershell.js`
`src/cli`) that launches it — together they're published as one npm package. The app is still not
meant to be run standalone with `next dev`/`next start`, since it needs a custom server (`server.ts`)
for the WebSocket endpoint; use the CLI (`triggershell start`) or the `pnpm` scripts below instead.
2026-08-15 18:37:30 +02:00
See the [repo root README](../README.md) for how to run TriggerShell end-to-end, and
[`../docs/ARCHITECTURE.md`](../docs/ARCHITECTURE.md) for how this app is put together.
```bash
pnpm install
pnpm dev # tsx watch server.ts - reads TRIGGERSHELL_CONFIG_PATH from the environment
pnpm lint
pnpm typecheck
pnpm test # CLI unit tests (src/cli/**/*.test.ts)
2026-08-15 18:37:30 +02:00
pnpm db:studio # browse the SQLite database
```
Note: this is the contributor workflow for developing TriggerShell itself. End users install and
run the published `triggershell` CLI instead (see the root README).