changed dockerfile for hub-server, copied files for Hub and dispatch-server

This commit is contained in:
PxlLoewe
2025-05-27 01:07:04 -07:00
parent aeace37f9c
commit f54d3ab040
7 changed files with 384 additions and 23 deletions

View File

@@ -11,7 +11,7 @@ app.use(cors());
app.use(router);
const port = process.env.API_PORT || 3003;
const port = process.env.HUB_API_PORT || 3000;
app.listen(port, () => {
console.log(`Server is running on port ${port}`);
});