| Total Complexity | 1 |
| Complexity/F | 1 |
| Lines of Code | 6 |
| Function Count | 1 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import graphQLServer from './server'; |
||
| 2 | import { SERVER_PORT } from './constants'; |
||
| 3 | |||
| 4 | graphQLServer.listen({ port: SERVER_PORT }, () => { |
||
| 5 | console.log(`🚀 GraphQL is now running on port: ${SERVER_PORT}`); |
||
|
|
|||
| 6 | }); |
||
| 7 |