mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2025-12-30 21:29:44 -06:00
15 lines
302 B
Bash
15 lines
302 B
Bash
#!/bin/bash
|
|
|
|
# Run migration script
|
|
./hatchet-migrate
|
|
if [ $? -ne 0 ]; then
|
|
echo "Migration script failed. Exiting..."
|
|
exit 1
|
|
fi
|
|
|
|
# Generate config files
|
|
./hatchet-admin quickstart --skip certs --generated-config-dir ./config --overwrite=false
|
|
|
|
# Run the Go binary
|
|
./hatchet-lite --config ./config
|