started adding HTML files for the web monitor program

This commit is contained in:
UpstreamData
2022-02-24 08:57:23 -07:00
parent 5a7dcc7fcf
commit 610ee57963
6 changed files with 199 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
from tools.web_monitor.app import app
if __name__ == '__main__':
# app.run for running the sanic app inside the file
app.run(host="0.0.0.0", port=80)