This commit is contained in:
fencl
2024-01-02 08:53:27 +01:00
parent 127a921677
commit f20eda4c29
13 changed files with 1104 additions and 1038 deletions

11
ADF/server.js Normal file
View File

@@ -0,0 +1,11 @@
const express = require('express');
const path = require('path');
const app = express();
const port = 3000;
app.use(express.static(path.join(__dirname, '')));
app.listen(port, () => {
console.log(`Server běží na http://localhost:${port}`);
});