added dockerfile and removed cxfreeze from web_monitor requirements due to it breaking the docker setup
This commit is contained in:
10
web_monitor.py
Normal file
10
web_monitor.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from tools.web_monitor.app import app
|
||||
import uvicorn
|
||||
|
||||
|
||||
def main():
|
||||
uvicorn.run("web_monitor:app", host="0.0.0.0", port=80)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user