2022-05-25 08:13:35 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-08-28 09:13:53 +02:00
|
|
|
cd apps/viewer;
|
|
|
|
node -e "const { configureRuntimeEnv } = require('next-runtime-env/build/configure'); configureRuntimeEnv();"
|
|
|
|
cd ../..;
|
2022-05-25 08:13:35 -07:00
|
|
|
|
2023-10-13 15:01:21 +02:00
|
|
|
HOSTNAME=0.0.0.0 PORT=3000 node apps/viewer/server.js;
|