-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
34 lines (30 loc) · 893 Bytes
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#settings.py
# -*- coding: utf-8 -*-
"""
Created on Mon Apr 30 15:51:54 2018
@author: s_jan001
"""
import os
# __file__ refers to the file settings.py
APP_ROOT = os.path.dirname(os.path.abspath(__file__)) # refers to application_top
#print("APP_ROOT:",APP_ROOT)
UUID = ""
PnS_PROJ_ID = ""
STATIC_DIR = os.path.join(APP_ROOT,"static")
USER_SESSIONS_DIR = os.path.join(STATIC_DIR,"usessions")
PROJ_DIR_PATH = ""
UPLOADED_DIR_PATH = ""
MODIF_DIR_PATH = ""
OUTPUT_DIR_PATH = ""
SVG_DIR_PATH = ""
SMARTSKEMA_PATH = os.path.join(STATIC_DIR,"..")
QUALITATIVE_REPRESENTATION = os.path.join(APP_ROOT, "spatialRepresentations.json")
#print("herer is working dir",os.getcwd())
DIR_QCNS = "./output"
PROJECT_FOLDER ="./projectFolder"
UPLOADED_FOLDER ="./projectFolder/uploadedFiles"
MODIFIED_FOLDER ="./projectFolder/modifiedFiles"
DIR_DATA = "./data"
RecordList=[]
SketchMapName= ""
BaseMapName=""