Refactored client side with vue cli

This commit is contained in:
ori agranat
2019-03-10 22:29:29 +02:00
parent 1444234398
commit 9ba9228b32
1620 changed files with 11875 additions and 135430 deletions

11
backend/Main.py Normal file
View File

@@ -0,0 +1,11 @@
import tornado.ioloop
from app.ChameleonVisionApp import ChameleonApplication
from tornado.options import options
if __name__ == "__main__":
tornado.options.parse_command_line()
app = ChameleonApplication()
print(f"Serving on port {options.port}")
app.listen(options.port)
tornado.ioloop.IOLoop.current().start()