first commit

This commit is contained in:
2024-05-16 16:05:41 +02:00
commit adf8283ae0
197 changed files with 26666 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
const app = require('./index.js')
const port = process.env.PORT || '3000'
app.listen(port, '0.0.0.0', () => {
console.log('Server listening on port '+port);
});