Staff-Dashboard/dash-server.js

11 lines
287 B
JavaScript
Raw Permalink Normal View History

2024-10-13 15:17:45 -04:00
const express = require('express');
const app = express();
const port = 6574;
// Serve static files from your directory
app.use(express.static('/home/harry/Documents/staff-dash'));
app.listen(port, () => {
console.log(`Server running at http://staff.libraryofcode.org:${port}`);
});