added email verification

This commit is contained in:
PxlLoewe
2025-05-30 01:06:28 -07:00
parent 0cebe2b97e
commit b0caf56add
20 changed files with 459 additions and 232 deletions

View File

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