diff --git a/.replit b/.replit deleted file mode 100644 index 6f175b6..0000000 --- a/.replit +++ /dev/null @@ -1,32 +0,0 @@ -modules = ["python-3.11"] - -[workflows] -runButton = "Project" - -[[workflows.workflow]] -name = "Project" -mode = "parallel" -author = "agent" - -[[workflows.workflow.tasks]] -task = "workflow.run" -args = "Start application" - -[[workflows.workflow]] -name = "Start application" -author = "agent" - -[workflows.workflow.metadata] -outputType = "webview" - -[[workflows.workflow.tasks]] -task = "shell.exec" -args = "python3 serve.py" -waitForPort = 5000 - -[[ports]] -localPort = 5000 -externalPort = 80 - -[agent] -expertMode = true diff --git a/README.md b/README.md deleted file mode 100644 index e69de29..0000000 diff --git a/attached_assets/image_1783201757970.png b/attached_assets/image_1783201757970.png deleted file mode 100644 index 72d398c..0000000 Binary files a/attached_assets/image_1783201757970.png and /dev/null differ diff --git a/serve.py b/serve.py deleted file mode 100644 index 6e11caa..0000000 --- a/serve.py +++ /dev/null @@ -1,18 +0,0 @@ -import http.server -import socketserver - -PORT = 5000 - -class NoCacheHandler(http.server.SimpleHTTPRequestHandler): - def end_headers(self): - self.send_header('Cache-Control', 'no-store, no-cache, must-revalidate, max-age=0') - self.send_header('Pragma', 'no-cache') - self.send_header('Expires', '0') - super().end_headers() - -class ReusableTCPServer(socketserver.TCPServer): - allow_reuse_address = True - -with ReusableTCPServer(("0.0.0.0", PORT), NoCacheHandler) as httpd: - print(f"Serving on port {PORT} with cache disabled") - httpd.serve_forever()