mirror of
https://github.com/zkopru-network/zkopru.git
synced 2026-01-13 16:37:54 -05:00
8 lines
196 B
Bash
8 lines
196 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
while ! nc -z postgres 5432; do sleep 1; done;
|
|
|
|
exec gotty -w --port $PORT node /proj/packages/cli/dist/apps/coordinator/cli.js --config /proj/packages/cli/coordinator.dev.json
|