annot-server/config.py.tmpl
author cavaliet
Fri, 10 Oct 2014 12:03:01 +0200
changeset 9 ae8a74bd6add
parent 3 1b94e6e9579f
permissions -rw-r--r--
alert system for feedback

import os.path

config = {
    'web_port': 8080,
    'ws_port': 8090,
    'osc_port': 9090,
    'conn_str': 'postgresql://[user[:password]@][netloc][:port][/dbname][?param1=value1&...]',
    'static_url': 'static',
    'static_root' : os.path.join(os.path.dirname(os.path.abspath(__file__)),'static')
}