annot-server/config.py
author ymh <ymh.work@gmail.com>
Mon, 13 Oct 2014 12:43:47 +0200
changeset 13 435d5c15275a
permissions -rw-r--r--
clean client npm and gulp config, change flask root url, reference static url in template, change config management to follow flask convention

import os.path

WEB_PORT = 8080
WS_PORT = 8090
OSC_PORT = 9090

CONN_STR = ''

STATIC_URL = '/static'
STATIC_ROOT = os.path.join(os.path.dirname(os.path.abspath(__file__)),'static')

from settings import *