summaryrefslogtreecommitdiff
path: root/src/index.ts
blob: 6265d20461ecd8d023cf15ca0c9861e49f479786 (plain)
1
2
3
4
5
6
7
8
import app from './app';

const port = process.env.PORT || 4200;
app.listen(port, () => {
  /* eslint-disable no-console */
  console.log(`Listening: http://localhost:${port}`);
  /* eslint-enable no-console */
});