mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-05 16:11:21 +00:00
Prepare use of UIModules
This commit is contained in:
parent
2d7d5228c8
commit
f3c9a21956
@ -8,6 +8,7 @@ from tornado.ioloop import IOLoop
|
|||||||
|
|
||||||
from config import WEB_PORT
|
from config import WEB_PORT
|
||||||
from handlers import MainHandler, ZMQWebSocketHandler
|
from handlers import MainHandler, ZMQWebSocketHandler
|
||||||
|
import ui_modules
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
routes = [
|
routes = [
|
||||||
@ -18,6 +19,7 @@ if __name__ == '__main__':
|
|||||||
routes,
|
routes,
|
||||||
template_path=r'templates/',
|
template_path=r'templates/',
|
||||||
static_path=r'static/',
|
static_path=r'static/',
|
||||||
|
ui_modules=ui_modules,
|
||||||
autoreload=True
|
autoreload=True
|
||||||
)
|
)
|
||||||
application.listen(WEB_PORT)
|
application.listen(WEB_PORT)
|
||||||
|
0
src/app/ui_modules/__init__.py
Normal file
0
src/app/ui_modules/__init__.py
Normal file
Loading…
Reference in New Issue
Block a user