This commit is contained in:
fencl
2024-01-02 09:09:13 +01:00
parent 8a83bd925a
commit 2b34706c4b
13 changed files with 1104 additions and 1037 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}`);
});