Versie module 1 van 26-7

This commit is contained in:
2026-07-26 22:18:52 +02:00
commit 26a820b41a
39 changed files with 3663 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
require("dotenv").config();
const http = require("http");
const createApp = require("./config/express");
const app = createApp();
const server = http.createServer(app);
const PORT = process.env.PORT || 3000;
server.listen(PORT, () => {
console.log("");
console.log("===================================");
console.log("🚀 PantryHub gestart");
console.log(`🌍 http://localhost:${PORT}`);
console.log("===================================");
});