Spaces:
Sleeping
Sleeping
| import express from "express"; | |
| const app = express(); | |
| app.use(express.json()); | |
| app.use(express.static("public")); | |
| app.get("/", (req, res) => { | |
| res.send("AI Replit Running 🚀"); | |
| }); | |
| const PORT = process.env.PORT || 7860; | |
| app.listen(PORT, "0.0.0.0", () => { | |
| console.log("Server running on port", PORT); | |
| }); |