-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmup.json
39 lines (33 loc) · 1.13 KB
/
mup.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
{
// Server authentication info
"servers": [
{
"host": "46.101.156.209",
"username": "root",
"pem": "~/.ssh/id_rsa",
"env": {
"MAIL_URL": "smtp://sergey.sergeevich.petrov:[email protected]:465"
}
}
],
// Install MongoDB on the server. Does not destroy the local MongoDB on future setups
"setupMongo": true,
// Application name (no spaces).
"appName": "sergeypetrov",
// 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/neoromantic/Projects/sergeypetrov.ru",
// Configure environment
// ROOT_URL must be set to your correct domain (https or http)
"env": {
"PORT": 8001,
"ROOT_URL": "http://sergeypetrov.ru"
},
// 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
}