arojunior /
awesome-feed-server
| 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}`); |
||
|
0 ignored issues
–
show
Debugging Code
introduced
by
Loading history...
|
|||
| 6 | }); |
||
| 7 |