mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
9 lines
262 B
JavaScript
9 lines
262 B
JavaScript
import createServer from './server'
|
|
import CONFIG from './config'
|
|
|
|
const { app } = createServer()
|
|
app.listen({ port: CONFIG.GRAPHQL_PORT }, () => {
|
|
/* eslint-disable-next-line no-console */
|
|
console.log(`GraphQLServer ready at ${CONFIG.GRAPHQL_URI} 🚀`)
|
|
})
|