mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-18 09:02:11 +03:00
11 lines
136 B
Bash
Executable File
11 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
|
|
graphql-engine serve &
|
|
|
|
while ! curl -s http://localhost:8080/healthz > /dev/null ; do
|
|
sleep 1
|
|
done
|
|
|
|
hasura deploy
|
|
|
|
wait |