scaler added and confirmed builds work

This commit is contained in:
2025-12-13 12:07:34 -06:00
parent c3b2acd033
commit 3bcc6f89b3
7 changed files with 161 additions and 51 deletions

View File

@@ -1,10 +1,14 @@
import express from "express";
import { setupRoutes } from "@/src/routes/routeHandler.js";
import { setupRoutes } from "@/src/routes/routeHandler.route.js";
const app = express();
const startApp = async () => {
const app = express();
const baseUrl = "";
setupRoutes(baseUrl, app);
setupRoutes(app);
app.listen(3000, () => {
console.log("Listening on port 3000");
});
};
app.listen(3000, () => {
console.log("Listening on port 3000");
});
startApp();