Initial release

This commit is contained in:
odweta
2026-09-10 12:43:40 +02:00
commit 42cc4eafa8
15 changed files with 7400 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
const express = require('express');
const path = require('path');
const app = express();
// specifying the folder with the static content - html+css
app.use(express.static(__dirname + '/static'));
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, '/static/index.html'));
});
module.exports = app;