feat : Init Project

This commit is contained in:
Thibault Pouch
2026-02-28 14:20:09 +01:00
commit f700d7fd86
20 changed files with 4066 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import 'dotenv/config';
import app from './app.js';
const PORT = parseInt(process.env.PORT ?? '3000', 10);
app.listen(PORT, () => {
console.log(`[server] Running on http://localhost:${PORT}`);
});