-
Notifications
You must be signed in to change notification settings - Fork 0
Get Started
Osvaldo Andrade edited this page Feb 12, 2026
·
1 revision
This page is the fastest way to run Tikti locally and validate the core identity flows.
- Go 1.24+
- Redis reachable from Tikti (
redisAddrin config) - A local config file, typically
config/tikti.yaml
go run ./cmd/tikti -f config/tikti.yamlgo build -o tikti ./cmd/tikti
go build -o tikti-cli ./cmd/tikti-cli
go build -o tikti-migrate ./cmd/tikti-migrate- Frontend calls
POST /v1/accounts/sendOobCode?key=...with user email and requestType. - Tikti creates user when needed and emits an OOB code flow per spec.
- User receives the token and submits it to
POST /v1/accounts/signInWithOobCode. - Tikti validates OOB code and returns authentication tokens.