diff --git a/backend/app/ChameleonVisionApp.py b/backend/app/ChameleonVisionApp.py index c4817b673..cd786c272 100644 --- a/backend/app/ChameleonVisionApp.py +++ b/backend/app/ChameleonVisionApp.py @@ -15,12 +15,12 @@ class ChameleonApplication(tornado.web.Application): (r"/", MainHandler), (r"/websocket", ChameleonWebSocket), (r"/(.*)", tornado.web.StaticFileHandler, - {"path": r"{0}".format(os.path.join(os.path.dirname(__file__), "static"))}), + {"path": r"{0}".format(os.path.join(os.path.dirname(__file__), "site"))}), ] settings = dict({ - "template_path": os.path.join(os.path.dirname(__file__), "templates"), - "static_path": os.path.join(os.path.dirname(__file__), "static"), + "template_path": os.path.join(os.path.dirname(__file__), "site"), + "static_path": os.path.join(os.path.dirname(__file__), "site"), "debug": True } ) diff --git a/backend/app/static/css/app.bd8aa8d9.css b/backend/app/site/css/app.bd8aa8d9.css similarity index 100% rename from backend/app/static/css/app.bd8aa8d9.css rename to backend/app/site/css/app.bd8aa8d9.css diff --git a/backend/app/static/favicon.ico b/backend/app/site/favicon.ico similarity index 100% rename from backend/app/static/favicon.ico rename to backend/app/site/favicon.ico diff --git a/backend/app/static/fonts/ionicons.143146fa.woff2 b/backend/app/site/fonts/ionicons.143146fa.woff2 similarity index 100% rename from backend/app/static/fonts/ionicons.143146fa.woff2 rename to backend/app/site/fonts/ionicons.143146fa.woff2 diff --git a/backend/app/static/fonts/ionicons.99ac3308.woff b/backend/app/site/fonts/ionicons.99ac3308.woff similarity index 100% rename from backend/app/static/fonts/ionicons.99ac3308.woff rename to backend/app/site/fonts/ionicons.99ac3308.woff diff --git a/backend/app/static/fonts/ionicons.d535a25a.ttf b/backend/app/site/fonts/ionicons.d535a25a.ttf similarity index 100% rename from backend/app/static/fonts/ionicons.d535a25a.ttf rename to backend/app/site/fonts/ionicons.d535a25a.ttf diff --git a/backend/app/static/img/ionicons.a2c4a261.svg b/backend/app/site/img/ionicons.a2c4a261.svg similarity index 100% rename from backend/app/static/img/ionicons.a2c4a261.svg rename to backend/app/site/img/ionicons.a2c4a261.svg diff --git a/backend/app/templates/index.html b/backend/app/site/index.html similarity index 100% rename from backend/app/templates/index.html rename to backend/app/site/index.html diff --git a/backend/app/static/js/app.d1ab8cb6.js b/backend/app/site/js/app.d1ab8cb6.js similarity index 100% rename from backend/app/static/js/app.d1ab8cb6.js rename to backend/app/site/js/app.d1ab8cb6.js diff --git a/backend/app/static/js/app.d1ab8cb6.js.map b/backend/app/site/js/app.d1ab8cb6.js.map similarity index 100% rename from backend/app/static/js/app.d1ab8cb6.js.map rename to backend/app/site/js/app.d1ab8cb6.js.map diff --git a/backend/app/static/js/chunk-vendors.a3ecb371.js b/backend/app/site/js/chunk-vendors.a3ecb371.js similarity index 100% rename from backend/app/static/js/chunk-vendors.a3ecb371.js rename to backend/app/site/js/chunk-vendors.a3ecb371.js diff --git a/backend/app/static/js/chunk-vendors.a3ecb371.js.map b/backend/app/site/js/chunk-vendors.a3ecb371.js.map similarity index 100% rename from backend/app/static/js/chunk-vendors.a3ecb371.js.map rename to backend/app/site/js/chunk-vendors.a3ecb371.js.map