Add local production infra lab

This commit is contained in:
thanhnv
2026-07-06 12:00:27 +09:00
parent ec261bcbc5
commit fc736aabf1
16 changed files with 623 additions and 23 deletions
@@ -73,6 +73,8 @@ class Handler(BaseHTTPRequestHandler):
def log_message(self, *args): # silence per-request stderr noise
pass
BIND = os.environ.get("CASAN_DASHBOARD_BIND", "127.0.0.1")
if __name__ == "__main__":
HTTPServer(("127.0.0.1", PORT), Handler).serve_forever()
HTTPServer((BIND, PORT), Handler).serve_forever()