added server

This commit is contained in:
2025-10-20 06:32:14 -04:00
parent df7c275929
commit f2cf309d97
43 changed files with 1520 additions and 1 deletions

6
server/src/index.ts Normal file
View File

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