Files
Project/start.js
thenatespack a5fceda42f
Some checks failed
Deploy Express API / deploy (push) Has been cancelled
basic frontend js
2025-11-24 19:20:15 -07:00

13 lines
294 B
JavaScript

import express from "express";
import app from "./app.js";
const PORT = process.env.PORT || 7653;
// Serve static files from "public" folder
app.use(express.static('public'));
// Start the server
app.listen(PORT, () => {
console.log(`Transit API running at http://localhost:${PORT}`);
});