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