Files
HA-Web-Screensaver/api/index.js
Joris Bertomeu dfb0846b79 first
2024-11-19 12:01:15 +01:00

8 lines
178 B
JavaScript

import { initApp } from './src/app.js';
const PORT = 3000;
const app = initApp();
app.listen(PORT, () => {
console.log(`Server is running on http://localhost:${PORT}`);
});