This repository has been archived by the owner on Nov 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
96 additions
and
80 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,27 @@ | ||
{ | ||
// Server authentication info | ||
"servers": [ | ||
{ | ||
"host": "hostname", | ||
"username": "root", | ||
"password": "password" | ||
// or pem file (ssh based authentication) | ||
// WARNING: Keys protected by a passphrase are not supported | ||
//"pem": "~/.ssh/id_rsa" | ||
// Also, for non-standard ssh port use this | ||
//"sshOptions": { "port" : 49154 }, | ||
// server specific environment variables | ||
"env": {} | ||
} | ||
], | ||
|
||
// Install MongoDB on the server. Does not destroy the local MongoDB on future setups | ||
"setupMongo": true, | ||
|
||
// WARNING: Node.js is required! Only skip if you already have Node.js installed on server. | ||
"setupNode": true, | ||
|
||
// WARNING: nodeVersion defaults to 0.10.36 if omitted. Do not use v, just the version number. | ||
"nodeVersion": "0.10.36", | ||
|
||
// Install PhantomJS on the server | ||
"setupPhantom": true, | ||
|
||
// 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": "meteor", | ||
|
||
// Location of app (local directory). This can reference '~' as the users home directory. | ||
// i.e., "app": "~/Meteor/my-app", | ||
// This is the same as the line below. | ||
"app": "/Users/arunoda/Meteor/my-app", | ||
|
||
// Configure environment | ||
// ROOT_URL must be set to https://YOURDOMAIN.com when using the spiderable package & force SSL | ||
// your NGINX proxy or Cloudflare. When using just Meteor on SSL without spiderable this is not necessary | ||
"env": { | ||
"PORT": 80, | ||
"ROOT_URL": "http://myapp.com", | ||
"MONGO_URL": "mongodb://arunoda:[email protected]:10023/MyApp", | ||
"MAIL_URL": "smtp://postmaster%40myapp.mailgun.org:[email protected]:587/" | ||
}, | ||
|
||
// Meteor Up checks if the app comes online just after the deployment. | ||
// Before mup checks that, it will wait for the number of seconds configured below. | ||
"deployCheckWaitTime": 15 | ||
} | ||
"servers": [{ | ||
"host": "spa.tial.ly", | ||
"username": "kyle", | ||
"password": "lemonade" | ||
}], | ||
|
||
"setupMongo": true, | ||
|
||
"setupNode": false, | ||
|
||
"nodeVersion": "0.10.36", | ||
|
||
"setupPhantom": false, | ||
|
||
"appName": "meteor", | ||
|
||
"app": "/Users/KyleK/github/SARCAT/meteor", | ||
|
||
"env": { | ||
"MONGO_URL": "mongodb://localhost:27017", | ||
"ROOT_URL": "http://localhost.com", | ||
"PORT": 3000 | ||
}, | ||
|
||
"deployCheckWaitTime": 15 | ||
} |
This file contains 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
This file contains 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