annot-server/config.py
changeset 13 435d5c15275a
equal deleted inserted replaced
12:a0f1f77148d9 13:435d5c15275a
       
     1 import os.path
       
     2 
       
     3 WEB_PORT = 8080
       
     4 WS_PORT = 8090
       
     5 OSC_PORT = 9090
       
     6 
       
     7 CONN_STR = ''
       
     8 
       
     9 STATIC_URL = '/static'
       
    10 STATIC_ROOT = os.path.join(os.path.dirname(os.path.abspath(__file__)),'static')
       
    11 
       
    12 from settings import *