author | rougeronj |
Sat, 18 Apr 2015 09:37:57 +0200 | |
changeset 167 | 2b99fed0285e |
parent 13 | 435d5c15275a |
permissions | -rw-r--r-- |
13
435d5c15275a
clean client npm and gulp config, change flask root url, reference static url in template, change config management to follow flask convention
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
1 |
import os.path |
435d5c15275a
clean client npm and gulp config, change flask root url, reference static url in template, change config management to follow flask convention
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
2 |
|
435d5c15275a
clean client npm and gulp config, change flask root url, reference static url in template, change config management to follow flask convention
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
3 |
WEB_PORT = 8080 |
435d5c15275a
clean client npm and gulp config, change flask root url, reference static url in template, change config management to follow flask convention
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
4 |
WS_PORT = 8090 |
435d5c15275a
clean client npm and gulp config, change flask root url, reference static url in template, change config management to follow flask convention
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
5 |
OSC_PORT = 9090 |
435d5c15275a
clean client npm and gulp config, change flask root url, reference static url in template, change config management to follow flask convention
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
6 |
|
435d5c15275a
clean client npm and gulp config, change flask root url, reference static url in template, change config management to follow flask convention
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
7 |
CONN_STR = '' |
435d5c15275a
clean client npm and gulp config, change flask root url, reference static url in template, change config management to follow flask convention
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
8 |
|
435d5c15275a
clean client npm and gulp config, change flask root url, reference static url in template, change config management to follow flask convention
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
9 |
STATIC_URL = '/static' |
435d5c15275a
clean client npm and gulp config, change flask root url, reference static url in template, change config management to follow flask convention
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
10 |
STATIC_ROOT = os.path.join(os.path.dirname(os.path.abspath(__file__)),'static') |
435d5c15275a
clean client npm and gulp config, change flask root url, reference static url in template, change config management to follow flask convention
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
11 |
|
435d5c15275a
clean client npm and gulp config, change flask root url, reference static url in template, change config management to follow flask convention
ymh <ymh.work@gmail.com>
parents:
diff
changeset
|
12 |
from settings import * |