diff options
author | Srikant Patnaik | 2016-05-17 16:09:09 +0530 |
---|---|---|
committer | Srikant Patnaik | 2016-05-17 16:09:09 +0530 |
commit | ffebcd2c08a2bef49151244ffbf0e7a7db43ce08 (patch) | |
tree | b80eb591a74f1cb39d7900c557e38f3e07248979 | |
parent | cdf4c8f9bb0a2d5af5a954403ad2e08e2825f792 (diff) | |
download | scilab-on-cloud-ffebcd2c08a2bef49151244ffbf0e7a7db43ce08.tar.gz scilab-on-cloud-ffebcd2c08a2bef49151244ffbf0e7a7db43ce08.tar.bz2 scilab-on-cloud-ffebcd2c08a2bef49151244ffbf0e7a7db43ce08.zip |
added config.py without creds and modified gitignore
-rw-r--r-- | soc/config.py | 24 |
1 files changed, 24 insertions, 0 deletions
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' + |