lila/bin/dev.default
2017-10-23 22:34:38 +02:00

13 lines
450 B
Bash

#!/bin/sh
# Starts a dev console to compile and run lichess.
# To edit this file, copy it to bin/dev: it's not indexed by Git.
# cp bin/dev.default bin/dev
# chmod +x bin/dev
# ./bin/dev
# Yes it needs tons of memory. Go for 4g if you have them.
export JAVA_OPTS="-Xms2048m -Xmx2560m -XX:ReservedCodeCacheSize=64m -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+ExitOnOutOfMemoryError -Dkamon.auto-start=true"
sbt -Dhttp.port=9663 "$@"