What is the best way to Deploy a stack that uses meteor, apollo, graphql, and react using MUP. I have tried using MUP got to a point of succesfull deployment, but root url comes back with a blank page, with no errors corresponding to it? Strongly Believe it is a Graphql or apollo issue, but not sure. New to Deployment Please Help, Thanks in Advance.
This is my mup.js
module.exports = {
servers: {
one: {
host: '192.168.1.4',
username: 'root',
pem: '/home/sarath/.ssh/DealApp_private.pem'
}
},
meteor: {
name: 'dealapp-primary',
path: '/home/sarath/Desktop/DealApp',
docker: {
image: 'abernix/meteord:node-8.4.0-base',
},
servers: {
one: {}
},
buildOptions: {
serverOnly: true
},
env: {
PORT: 3000,
MONGO_URL: '<url>',
ROOT_URL: 'https://<domain>.io',
},
deployCheckWaitTime: 60
}
}