template initialization
All checks were successful
gitea/MERN_STACK_TEMPLATE/pipeline/head This commit looks good

This commit is contained in:
2025-05-01 23:07:29 +02:00
commit a781c563d0
29 changed files with 5186 additions and 0 deletions

12
backend/server.js Normal file
View File

@ -0,0 +1,12 @@
import express from "express";
const app = express();
app.get("/", (req, res) => {
res.send("Hello World!");
});
app.listen(8080, () => {
console.log("Server Started at 0.0.0.0:8080");
});