Spaces:
Paused
Paused
| const http = require("http"); | |
| const PORT = process.env.PORT || 7860; | |
| const server = http.createServer((req, res) => { | |
| res.writeHead(200, { "Content-Type": "text/html" }); | |
| res.end(` | |
| <h1>OpenClaw Running</h1> | |
| <p>Your HuggingFace Space is working.</p> | |
| `); | |
| }); | |
| server.listen(PORT, "0.0.0.0", () => { | |
| console.log("Server running on port " + PORT); | |
| }); |