Initial commit

This commit is contained in:
2026-04-12 08:54:19 +00:00
commit 18016013d7
9 changed files with 1262 additions and 0 deletions

16
server.js Normal file
View File

@@ -0,0 +1,16 @@
'use strict';
const express = require('express');
const path = require('path');
const app = express();
const PORT = process.env.PORT || 3000;
app.use(express.static(path.join(__dirname, 'public')));
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, 'public', 'index.html'));
});
app.listen(PORT, () => {
console.log(`LinkedIn Formatter läuft auf http://localhost:${PORT}`);
});