const express = require("express"); const app = express(); const PORT = 8080; // Simple "Hello from Automation-serverLess-Git-hosted5029!" route app.get("*", (req, res) => { res.send("Hello, World!"); }); // Start server app.listen(PORT, () => { console.log(`Server is running on http://localhost:${PORT}`); });