mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-15 13:19:55 -06:00
* (wip) encryption * feat: api tokens * chore: add api token generation command * fix: e2e tests * chore: set timeout for e2e job * fix: e2e tests, remove client-side certs * chore: address PR review comments * fix: token tests * chore: address review comments and fix tests
10 lines
192 B
Bash
10 lines
192 B
Bash
#!/bin/bash
|
|
# This scripts generates a local API token.
|
|
|
|
set -eux
|
|
|
|
set -a
|
|
. .env
|
|
set +a
|
|
|
|
go run ./cmd/hatchet-admin token create --name "local" --tenant-id 707d0855-80ab-4e1f-a156-f1c4546cbf52 |