2
0

🐳 Add required NODE_OPTIONS by default

This commit is contained in:
Baptiste Arnaud
2024-07-18 16:31:25 +02:00
parent 431e29b41e
commit 0239eec2cd
2 changed files with 2 additions and 2 deletions

View File

@ -9,4 +9,4 @@ sleep 15;
./node_modules/.bin/prisma migrate deploy --schema=packages/prisma/postgresql/schema.prisma; ./node_modules/.bin/prisma migrate deploy --schema=packages/prisma/postgresql/schema.prisma;
HOSTNAME=0.0.0.0 PORT=3000 node apps/builder/server.js; NODE_OPTIONS=--no-node-snapshot HOSTNAME=0.0.0.0 PORT=3000 node apps/builder/server.js;

View File

@ -4,4 +4,4 @@ cd apps/viewer;
node -e "const { configureRuntimeEnv } = require('next-runtime-env/build/configure'); configureRuntimeEnv();" node -e "const { configureRuntimeEnv } = require('next-runtime-env/build/configure'); configureRuntimeEnv();"
cd ../..; cd ../..;
HOSTNAME=0.0.0.0 PORT=3000 node apps/viewer/server.js; NODE_OPTIONS=--no-node-snapshot HOSTNAME=0.0.0.0 PORT=3000 node apps/viewer/server.js;