Add app.js

This commit is contained in:
2026-04-19 19:11:25 +00:00
commit 4fa6ef34df

9
app.js Normal file
View File

@@ -0,0 +1,9 @@
const http = require("http");
const server = http.createServer((req, res) => {
res.end("Hello from Gitea Actions 🚀");
});
server.listen(3000, () => {
console.log("Server running on port 3000");
});