Added test project requiring mongodb and added new workflow to test Gitea Actions - Service Containers

This commit is contained in:
2023-07-17 16:39:34 +02:00
parent e833c393fb
commit 5c635fd321
12 changed files with 1650 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);