Skip to content

Instantly share code, notes, and snippets.

@chip

chip/mupc.json Secret

Created February 3, 2018 20:18
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 chip/dfd664f8a7e2e6d0cfa77e809223b57f to your computer and use it in GitHub Desktop.
Save chip/dfd664f8a7e2e6d0cfa77e809223b57f to your computer and use it in GitHub Desktop.
mupc.json for nikkicastlephotography.com
{
// Server authentication info
"servers": [
{
"host": "nikkicastlephotography.com",
"username": "deploy",
"pem": "/Users/chip/.ssh/id_rsa",
"sshOptions": {
"port": 30000
}
}
],
// Install MongoDB in the server, does not destroy local MongoDB on future setup
"setupMongo": false,
// WARNING: Node.js is required! Only skip if you already have Node.js installed on server.
"setupNode": false,
// WARNING: If nodeVersion omitted will setup 0.10.36 by default. Do not use v, only version number.
"nodeVersion": "0.10.43",
// Install PhantomJS in the server
"setupPhantom": false,
// Show a progress bar during the upload of the bundle to the server.
// Might cause an error in some rare cases if set to true, for instance in Shippable CI
"enableUploadProgressBar": true,
// Application name (No spaces)
"appName": "nikkicastlephotographydotcom",
// Location of app (local directory)
"app": "/Users/chip/code/nikkicastlephotography.com",
// Configure environment
"env": {
"ROOT_URL": "http://nikkicastlephotography.com",
"MONGO_URL": "mongodb://localhost/nikkicastlephotographydotcom",
"PORT": 8090
},
// Meteor Up checks if the app comes online just after the deployment
// before mup checks that, it will wait for no. of seconds configured below
"deployCheckWaitTime": 15
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment