Yes
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 1m36s

This commit is contained in:
2026-03-17 00:22:54 +01:00
parent 44663ec051
commit 687a3c922c
18 changed files with 1573 additions and 43 deletions

16
backend/src/index.js Normal file
View File

@@ -0,0 +1,16 @@
const express = require("express");
require('dotenv').config();
const app = express();
const connectDB = require("./db");
// connect database
connectDB();
app.get("/", (req, res) => {
res.send("Hello from Proxmox container!");
});
app.listen(5000, () => {
console.log("Server running on port 5000");
});