Created
October 3, 2017 20:21
-
-
Save Bensigo/56d0084daf2b3e522a94f4e533e5df57 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express') | |
const bodyParser = require('body-parser') | |
const mongoose = require('mongoose') | |
const cors = require('cors') | |
const {graphiqlExpress, graphqlExpress} = require('apollo-server-express') | |
const morgan = require('morgan') | |
// require app modules | |
const config = require('./config/config') | |
const schema = require('./graphql') | |
const DB = require('./models') | |
const auth = require('./config/auth') | |
// making instance of app | |
const app = express() | |
// setting up middlewares | |
app.use(cors()) // TODO: add origin for the fontend | |
app.use(morgan('dev')) | |
app.use(auth) | |
// setup graphiql and graphql server | |
app.use('/graphiql', graphiqlExpress({ | |
endpointURL: '/graphql' | |
})) | |
app.use('/graphql', bodyParser.json(), graphqlExpress(req => ({ | |
schema, | |
context: { | |
DB | |
} | |
}))) | |
// connect to DB | |
mongoose.connect(config.DBURI, () => { | |
console.log('connected to DB successfully') | |
}) | |
// start app server | |
app.listen(config.PORT, () => { | |
console.log('starting up graphql server') | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment