This repository has been archived on 2025-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
skolavdf/si/docker-template/src/app.js
2023-03-26 23:39:38 +02:00

10 lines
191 B
JavaScript

const express = require('express');
const app = express();
const port = 80;
app.use(express.static('public'));
app.listen(port, () => {
console.log(`App listening on port ${port}`);
})