initial commit

This commit is contained in:
undefined
2025-01-24 20:05:48 +01:00
commit db55c10f43
484 changed files with 118165 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
"use strict";
const app = require("./app");
const PORT = 3001;
const onListen = async () => {
console.log("Server running at ", `http://localhost:${PORT}`);
console.log("\n");
};
const server = app.listen(PORT, onListen);
module.exports = { server, onListen, PORT };