Skip to content

Instantly share code, notes, and snippets.

@theodorDiaconu
Created November 4, 2016 11:36
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theodorDiaconu/858a8d6a8a4521d1ab4d18eaebae4ec1 to your computer and use it in GitHub Desktop.
Save theodorDiaconu/858a8d6a8a4521d1ab4d18eaebae4ec1 to your computer and use it in GitHub Desktop.
module.exports = {
servers: {
one: {
host: 'X.X.X.X',
username: 'ubuntu',
password: 'af0d226e34f204f1'
// or leave blank for authenticate from ssh-agent
}
},
meteor: {
name: 'appName',
path: '../../',
servers: {
one: {},
},
buildOptions: {
serverOnly: true,
debug: false
},
env: {
PORT: 80,
ROOT_URL: 'http://your.app.hostname.com',
MONGO_URL: 'mongodb://localhost/appName'
},
dockerImage: 'abernix/meteord:base', //optional
deployCheckWaitTime: 240 //default 10
},
mongo: { //optional
oplog: true,
port: 27017,
servers: {
one: {},
},
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment