2
0
Files
bot/scripts/viewer-entrypoint.sh

7 lines
205 B
Bash
Raw Normal View History

#!/bin/bash
cd apps/viewer;
node -e "const { configureRuntimeEnv } = require('next-runtime-env/build/configure'); configureRuntimeEnv();"
cd ../..;
HOSTNAME=0.0.0.0 PORT=3000 node apps/viewer/server.js;