Skip to content

Instantly share code, notes, and snippets.

@xavxyz
Created October 4, 2016 08:37
Show Gist options
  • Save xavxyz/6ddc2bb6f67fe0936c8328ab3314641d to your computer and use it in GitHub Desktop.
Save xavxyz/6ddc2bb6f67fe0936c8328ab3314641d to your computer and use it in GitHub Desktop.
module.exports = {
servers: {
one: {
host: '1.2.3.4', // your server ip
username: 'root',
// pem: 'absolute/path/to/ssh/key',
// password:
// or leave blank for authenticate from ssh-agent
}
},
meteor: {
name: 'telescope-nova', // name of your docker container
path: '../', // relative path to your app ; if this file is in /my-app/.deploy, this makes senses as referring to /my-app
servers: {
one: {}
},
buildOptions: {
serverOnly: true,
},
env: {
ROOT_URL: 'http://nova-app.com', // absolute url of your deploy ; it can be replaced by http://1.2.3.4 if nginx is not setup
MONGO_URL: 'mongodb://localhost/meteor'
},
docker: {
image:'abernix/meteord:base' // docker image working with meteor 1.4 & node 4
},
deployCheckWaitTime: 60
},
mongo: {
oplog: true,
port: 27017,
servers: {
one: {},
},
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment