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
|
|
|
|
2024-07-18 16:31:25 +02:00
|
|
|
NODE_OPTIONS=--no-node-snapshot HOSTNAME=0.0.0.0 PORT=3000 node apps/viewer/server.js;
|