Initial test playground project upload

This commit is contained in:
2023-07-14 23:46:50 +02:00
commit 3b7396ef30
10 changed files with 1628 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import bodyParser from 'body-parser';
import express from 'express';
import eventRoutes from './routes/events.js';
const app = express();
app.use(bodyParser.json());
app.use(eventRoutes);
app.listen(process.env.PORT);