I don't know what I did anymore

This commit is contained in:
Laurent
2024-10-22 11:15:06 +02:00
parent c8df868626
commit f200cbfd1d
5 changed files with 13 additions and 4 deletions

11
server.js Normal file
View File

@@ -0,0 +1,11 @@
import express from 'express';
import { handler } from './build/handler.js';
const app = express();
const port = 80;
app.use(handler);
app.listen(port, '0.0.0.0', () => {
console.log(`Server is running on http://localhost:${port}`);
});