Skip to content

Commit

Permalink
Increase node mem in cnode (#3876)
Browse files Browse the repository at this point in the history
* Increase node mem

* Switch to 4g
  • Loading branch information
raymondjacobson authored Sep 15, 2022
1 parent 6f255c5 commit 31a81c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion creator-node/scripts/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ if [[ "$devMode" == "true" ]]; then
npx nodemon --exec 'node --inspect=0.0.0.0:${debuggerPort} --require ts-node/register src/index.ts' --watch src/ | tee >(logger)
fi
else
node build/src/index.js | tee >(logger)
node --max-old-space-size=4096 build/src/index.js | tee >(logger)
fi

wait

0 comments on commit 31a81c1

Please sign in to comment.