1
0
forked from dachan/dach

a lot of changes

This commit is contained in:
2023-10-22 22:39:45 +03:00
parent 6fbf9596b7
commit 30228b54ae
739 changed files with 105543 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
const express = require('express');
const settings = require('../settings.json');
const app = express();
app.set('views','./public');
app.use(express.static('public'));
app.set('view engine', 'ejs');
app.get('/', (req, res) => {
res.render('index');
})
app.listen(settings.port);