Created
March 13, 2015 20:19
-
-
Save nocubicles/fec9a76a8fe9c018d5b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // Server authentication info | |
| "servers": [ | |
| { | |
| "host": "95.85.22.***", | |
| "username": "root", | |
| "password": "***" | |
| // or pem file (ssh based authentication) | |
| //"pem": "~/.ssh/id_rsa" | |
| } | |
| ], | |
| // Install MongoDB in the server, does not destroy local MongoDB on future setup | |
| "setupMongo": true, | |
| // WARNING: Node.js is required! Only skip if you already have Node.js installed on server. | |
| "setupNode": true, | |
| // WARNING: If nodeVersion omitted will setup 0.10.33 by default. Do not use v, only version number. | |
| "nodeVersion": "0.10.33", | |
| // Install PhantomJS in the server | |
| "setupPhantom": true, | |
| // Application name (No spaces) | |
| "appName": "***", | |
| // Location of app (local directory) | |
| "app": "/Users/villem1/***", | |
| // Configure environment | |
| "env": { | |
| "ROOT_URL": "http://***.me" | |
| }, | |
| // 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