1. Create a project
Sign in atapp.no-tickets.com and
create a project. The project name becomes the --project value
you’ll use from the CLI — short, lowercase, no spaces is the
convention (e.g. web-app, pricing-engine).
If this is your first time, the dashboard walks you through
account creation; the Free plan is available without a credit
card.
2. Mint a push token
From the project’s settings in the dashboard, issue a push token. Treat it like a deploy key — anyone holding it can write to that project’s feed. Copy the raw token value (the longnt_push_… string). You’ll
need it in the next step.
3. Register the token locally
<project> with the project name and <token> with the
value you copied. The token is stored in your local registry
(~/.config/no-tickets/); no network call is made.
Verify it’s there:
tokens block should now list your
project with its label.
4. Publish your first event
--type is the event schema id; --data is the JSON payload.
For a full list of flags (--actor-type, --dedupe-key,
--file for batching, etc.) see the
publish command reference.
If everything’s wired up you’ll see a one-line success on stderr
with the event id. Open the project’s board on the dashboard —
the event appears in the activity feed in real time.
What’s next
- Wire it into CI — see GitHub Actions or Generic CI for per-provider recipes.
- Take the dashboard tour — Dashboard tour shows what the board surfaces from the events you push.
- Browse event types — every event payload is validated
against a JSON Schema you can inspect with
no-tickets validate.
Troubleshooting
401 Unauthorizedon publish — the token isn’t registered locally or has been revoked. Re-runno-tickets token addand checkno-tickets status.422 ValidationError— the--dataJSON doesn’t match the event type’s schema.no-tickets validate --type <type> --data '<json>'runs the same check locally without sending.- No event on the board — the dashboard polls the feed; if
the event is in the activity log but not the board, the event
type may not drive a board state change. Most
ai.task.*andfeature.*events do; ad-hoc types may need a board view configured.