Skip to content

Instantly share code, notes, and snippets.

@qrobin
Created March 11, 2017 11:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qrobin/5e51d62884a16087d1273ad0abca5d22 to your computer and use it in GitHub Desktop.
Save qrobin/5e51d62884a16087d1273ad0abca5d22 to your computer and use it in GitHub Desktop.
module.exports = {
servers: {
one: {
host: 'YOUR_SERVER_IP_HERE',
username: 'YOUR_USERNAME_HERE',
pem: 'RELATIONAL PATH TO YOUR .pem FILE (better to put it into your mup folder and write here "./file.pem")', (or put the password below)
// password: '',
}
},
meteor: {
name: 'server',
path: '../',
servers: {
one: {},
},
volumes: { // lets you add docker volumes (optional)
"~/photos": "/path", // passed as '-v /host/path:/container/path' to the docker run command
},
buildOptions: {
serverOnly: true,
},
env: {
ROOT_URL: 'http://YOUR_SERVER_IP_HERE',
MONGO_URL: 'mongodb://localhost/meteor',
},
// change to 'kadirahq/meteord' if your app is not using Meteor 1.4
dockerImage: 'abernix/meteord:base',
deployCheckWaitTime: 60,
// Show progress bar while uploading bundle to server
// You might need to disable it on CI servers
enableUploadProgressBar: true
},
mongo: {
oplog: true,
port: 27017,
version: '3.4.1',
servers: {
one: {},
},
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment