mirror of
https://github.com/penpot/penpot.git
synced 2026-02-12 14:42:56 +00:00
12 lines
278 B
Bash
Executable File
12 lines
278 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;
|
|
|
|
export NODE_TLS_REJECT_UNAUTHORIZED=0
|
|
exec node target/app.js
|