added server
This commit is contained in:
6
server/src/index.ts
Normal file
6
server/src/index.ts
Normal 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);
|
||||
})
|
||||
Reference in New Issue
Block a user