summaryrefslogtreecommitdiff
path: root/config.sh
diff options
context:
space:
mode:
authormr <mr@mrautenberg.de>2011-05-23 13:32:35 +0200
committermr <mr@mrautenberg.de>2011-05-23 13:32:35 +0200
commit565997933b51f4573b68c2f04ebff82755ea8c74 (patch)
treea65f1c14b32e36be889f5724be82bfb9c103d684 /config.sh
parenta8efedb2177909693dbd51409492f8ac8418b3cb (diff)
parentccdba9f5223d82873b1c653ea3f8635f18fefd0e (diff)
Merge branch 'release/2.0.0'v2.0.0
Diffstat (limited to 'config.sh')
-rwxr-xr-xconfig.sh50
1 files changed, 50 insertions, 0 deletions
diff --git a/config.sh b/config.sh
new file mode 100755
index 0000000..5a13b3a
--- /dev/null
+++ b/config.sh
@@ -0,0 +1,50 @@
+#!/bin/sh
+#
+# Configuration file for Opentox installer.
+# Author: Christoph Helma, Andreas Maunz.
+#
+
+# 1) Base setup
+OT_DIST="debian" # Linux distribution (debian)
+OT_INSTALL="local" # Type (gem, local, server)
+OT_BRANCH="master" # Maturity (development, master)
+
+# 2) Where all binaries are installed.
+OT_PREFIX="$HOME/opentox-ruby"
+OT_JAVA_HOME="/usr/lib/jvm/java-6-sun"
+
+# 3) What versions to install.
+RUBY_NUM_VER="1.8.7-2011.03"
+OB_NUM_VER="2.2.3"
+KL_NUM_VER="0.9-11"
+REDIS_NUM_VER="2.2.2"
+
+# 4) Server settings.
+NGINX_SERVERNAME="localhost"
+WWW_DEST="$OT_PREFIX/www"
+
+# Done.
+
+
+### Nothing to gain from changes below this line.
+JAVA_CONF="$OT_PREFIX/.sh_java_ot"
+RUBY_CONF="$OT_PREFIX/.sh_ruby_ot"
+REDIS_CONF="$OT_PREFIX/.sh_redis_ot"
+NGINX_CONF="$OT_PREFIX/.sh_nginx_ot"
+OB_CONF="$OT_PREFIX/.sh_OB_ot"
+KL_CONF="$OT_PREFIX/.sh_R_ot"
+
+RUBY_VER="ruby-enterprise-$RUBY_NUM_VER"
+OB_VER="openbabel-$OB_NUM_VER"
+KL_VER="$KL_NUM_VER"
+REDIS_VER="$REDIS_NUM_VER"
+
+RUBY_DEST="$OT_PREFIX/$RUBY_VER"
+OB_DEST="$OT_PREFIX/$OB_VER"
+OB_DEST_BINDINGS="$OT_PREFIX/openbabel-ruby-install"
+KL_DEST="$OT_PREFIX/r-packages"
+NGINX_DEST="$OT_PREFIX/nginx"
+REDIS_DEST="$OT_PREFIX/redis-$REDIS_VER"
+
+REDIS_SERVER_CONF="$REDIS_DEST/redis.conf"
+OT_UI_CONF="$HOME/.opentox-ui.sh"