adding in the core on compile

This commit is contained in:
talksik
2022-06-03 10:13:40 -07:00
parent aa9b5aa954
commit 0d7839dd13
5 changed files with 40 additions and 726 deletions
+1 -1
View File
@@ -20,5 +20,5 @@ app.use('/api/status', (req: Request, res: Response) => {
res.json({ message: 'wohoo, server is healthy' });
});
const PORT = 5000;
const PORT = process.env.PORT || 8080;
const server = app.listen(PORT, () => console.log('express running'));