Skip to content

Commit

Permalink
add bin/dev.default script for easier onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Mar 20, 2016
1 parent a6da0af commit fee46a0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
conf/application.conf
bin/dev
logs
project/project
project/target
Expand Down
11 changes: 11 additions & 0 deletions bin/dev.default
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/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

export JAVA_OPTS="-Xms1536M -Xmx1536M -Dkamon.auto-start=true"

# Hide pesky reboot exceptions
sbt -Dhttp.port=9663 "$@" 2> /dev/null

0 comments on commit fee46a0

Please sign in to comment.