UNPKG

1.31 kBJSONView Raw
1{
2 // Server authentication info
3 "servers": [
4 {
5 "host": "hostname",
6 "username": "root",
7 "password": "password",
8 // or pem file (ssh based authentication)
9 // WARNING: Keys protected by a passphrase are not supported
10 //"pem": "~/.ssh/id_rsa"
11 // Also, for non-standard ssh port use this
12 //"sshOptions": { "port" : 49154 },
13 // server specific environment variables
14 "env": {}
15 }
16 ],
17
18 // Install MongoDB on the server. Does not destroy the local MongoDB on future setups
19 "setupMongo": true,
20
21 // Application name (no spaces).
22 "appName": "meteor",
23
24 // Location of app (local directory). This can reference '~' as the users home directory.
25 // i.e., "app": "~/Meteor/my-app",
26 // This is the same as the line below.
27 "app": "/Users/arunoda/Meteor/my-app",
28
29 // Configure environment
30 // ROOT_URL must be set to your correct domain (https or http)
31 "env": {
32 "PORT": 80,
33 "ROOT_URL": "http://myapp.com"
34 },
35
36 // Meteor Up checks if the app comes online just after the deployment.
37 // Before mup checks that, it will wait for the number of seconds configured below.
38 "deployCheckWaitTime": 15,
39
40 // show a progress bar while uploading.
41 // Make it false when you deploy using a CI box.
42 "enableUploadProgressBar": true
43}
\No newline at end of file