File size: 221 Bytes
ef874e6
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import app from './app';
import dotenv from 'dotenv';

dotenv.config();

const PORT = process.env.PORT || 5000;

app.listen(PORT, () => {
  console.log(`[Server]: Server sedang berjalan di http://localhost:${PORT}`);
});