(20241223) Making the tick simulator live for testing.

This commit is contained in:
2024-12-23 16:48:13 +05:30
parent da138ee1b3
commit 7c7b10f27c
4 changed files with 10 additions and 18 deletions
+1 -1
View File
@@ -338,7 +338,7 @@ if __name__ == "__main__":
# Run the web server
runner = web.AppRunner(app)
await runner.setup()
site = web.TCPSite(runner, "0.0.0.0", 5000)
site = web.TCPSite(runner, "0.0.0.0", 5214)
print("Server running on http://0.0.0.0:5000")
await site.start()