diff --git a/timeflux_ui/nodes/ui.py b/timeflux_ui/nodes/ui.py index 86a351d..2584f43 100755 --- a/timeflux_ui/nodes/ui.py +++ b/timeflux_ui/nodes/ui.py @@ -68,7 +68,10 @@ def __init__(self, host='localhost', port=8000, routes={}, settings={}, debug=Fa ]) # Apps - self._routes = { 'monitor': self._root + '/monitor' } + self._routes = { + 'monitor': self._root + '/monitor', + 'operator': self._root + '/operator', + } self._routes.update(routes) for name, path in self._routes.items(): try: diff --git a/apps/operator/assets/app.js b/timeflux_ui/www/operator/assets/app.js similarity index 100% rename from apps/operator/assets/app.js rename to timeflux_ui/www/operator/assets/app.js diff --git a/apps/operator/index.html b/timeflux_ui/www/operator/index.html similarity index 100% rename from apps/operator/index.html rename to timeflux_ui/www/operator/index.html