add login feature

This commit is contained in:
2025-10-22 06:55:28 -04:00
parent f2cf309d97
commit 28d0443f44
22 changed files with 287 additions and 1136 deletions

View File

@@ -1,6 +1,6 @@
import Server from './server';
const port = process.env.PORT || 3000;
Server.listen(port, ()=> {
console.log('Server is running on port [%o]', port);
})
Server.listen(port, () => {
console.log('Server is running on port [%o]', port);
});