mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-06 08:49:53 -06:00
* add in the migration for now * Update step_runs.sql remove TODO * change the schema so we don't undo it * add the migration for step run partition. remove prisma. add a helper task for recreating the db * do a manual merge of the schema.sql * add in the serial * update docs * PR feedback * add Identity to all tables that don't have a Bigserial * do the atlas hash with the new migration * squash the migrations --------- Co-authored-by: Sean Reilly <sean@hatchet.run>
9 lines
357 B
Bash
9 lines
357 B
Bash
alias get_token='go run ./cmd/hatchet-admin token create --name local --tenant-id 707d0855-80ab-4e1f-a156-f1c4546cbf52'
|
|
|
|
cat > ./examples/simple/.env <<EOF
|
|
HATCHET_CLIENT_TENANT_ID=707d0855-80ab-4e1f-a156-f1c4546cbf52
|
|
HATCHET_CLIENT_TLS_ROOT_CA_FILE=$PWD/hack/dev/certs/ca.cert
|
|
HATCHET_CLIENT_TLS_SERVER_NAME=cluster
|
|
HATCHET_CLIENT_TOKEN="$(get_token)"
|
|
EOF
|