equal
deleted
inserted
replaced
|
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 * |