diff options
-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' + |