Created
October 23, 2014 23:20
-
-
Save sorenlouv/d34e6a4cb54aff8c435b to your computer and use it in GitHub Desktop.
Tradeshift shell configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# TS home folder | |
export TS_HOME=~/ts-code/ | |
# tell Maven where Java7 is | |
export JAVA_HOME=`/usr/libexec/java_home -v 1.7` | |
# Riak needs at least a ulimit of 4096 | |
ulimit -n 10240 | |
# Increase allowed memory consumption for Maven | |
export MAVEN_OPTS="-Xmx2048m -XX:MaxPermSize=1024m" | |
export GRAILS_OPTS="-server -Xmx1024M -XX:MaxPermSize=512m" | |
export SBT_OPTS="-Xmx1024m -XX:MaxPermSize=256m" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment