From ffebcd2c08a2bef49151244ffbf0e7a7db43ce08 Mon Sep 17 00:00:00 2001 From: Srikant Patnaik Date: Tue, 17 May 2016 16:09:09 +0530 Subject: added config.py without creds and modified gitignore --- soc/config.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 soc/config.py diff --git a/soc/config.py b/soc/config.py new file mode 100644 index 0000000..3fbbeec --- /dev/null +++ b/soc/config.py @@ -0,0 +1,24 @@ +DB_NAME_DEFAULT = 'soc' +DB_USER_DEFAULT = '' + +DB_PASS_DEFAULT = '' + +DB_HOST_DEFAULT = '' +DB_PORT_DEFAULT = '' + + +DB_NAME_SCILAB = '' + +DB_USER_SCILAB = '' + +DB_PASS_SCILAB = '' + +DB_HOST_SCILAB = '' +DB_PORT_SCILAB = '' + +SCILAB_BIN = '/home/scilab_test/CLOUD/scilab/scilab-5.4.1/bin/scilab-adv-cli' +#SCILAB_FLAGS = '-noatomsautoload' +SCILAB_FLAGS = '-noatomsautoload -nogui -nb ' #srikant +SCIMAX_LOADER = '/home/scilab_test/CLOUD/scilab/scilab-scimax-2.1.4/loader.sce' +UPLOADS_PATH = '/home/scilab_test/CLOUD/uploads' + -- cgit