This commit is contained in:
Joris Bertomeu
2024-11-19 12:01:15 +01:00
commit dfb0846b79
40 changed files with 16403 additions and 0 deletions

8
api/index.js Normal file
View File

@@ -0,0 +1,8 @@
import { initApp } from './src/app.js';
const PORT = 3000;
const app = initApp();
app.listen(PORT, () => {
console.log(`Server is running on http://localhost:${PORT}`);
});