mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2025-12-30 21:29:44 -06:00
* feat: hatchet-lite mvp * fix: init shadow db * fix: install atlas * fix: correct env * fix: wait for db ready * fix: remove name flag * fix: add hatchet-lite to build
12 lines
151 B
Bash
12 lines
151 B
Bash
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
caddy start
|
|
|
|
set -a
|
|
. .env
|
|
set +a
|
|
|
|
npx --yes nodemon --signal SIGINT --config nodemon.api.json --exec go run ./cmd/hatchet-lite
|