mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
11 lines
240 B
Bash
Executable File
11 lines
240 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR=$(dirname $0);
|
|
source $SCRIPT_DIR/../../backend/scripts/_env;
|
|
|
|
bb -i '(babashka.wait/wait-for-port "localhost" 9630)';
|
|
bb -i '(babashka.wait/wait-for-path "target/app.js")';
|
|
sleep 2;
|
|
|
|
exec node target/app.js
|