-
Notifications
You must be signed in to change notification settings - Fork 2
/
mup_sample.json
42 lines (36 loc) · 1.23 KB
/
mup_sample.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
// Server authentication info
"servers": [
{
"host": "IP of the server, i.e. 111.222.333.444",
"username": "root",
"password": "password-goes-here",
// 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,
// Application name (no spaces).
"appName": "lets-eat",
// Location of app (local directory). This can reference '~' as the users home directory.
// i.e., "app": "~/Projects/my-app",
"app": "~/Projects/lets-eat",
// Configure environment
// ROOT_URL must be set to your correct domain (https or http)
"env": {
"PORT": 3000,
"ROOT_URL": "http://lets-eat.jointheleague.com"
},
// 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,
// show a progress bar while uploading.
// Make it false when you deploy using a CI box.
"enableUploadProgressBar": true
}