-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmup.js
58 lines (48 loc) · 999 Bytes
/
mup.js
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
module.exports = {
/*
https://github.com/kadirahq/meteor-up
mup setup
mup deploy
TODO make sure mongo port is reachable (27017)
if auth issues try adding ssh key to ssh-agent
*/
servers: {
// sydney
one: {
host: '13.210.54.191',
username: 'ubuntu',
pem: "/Users/danielwild/GoogleDrive/aws/keys/danwild-aws-sydney.pem",
opts: {
port: 22
}
}
},
meteor: {
// unofficial fix for meteor 1.4
// https://github.com/kadirahq/meteor-up/issues/172
// https://github.com/arunoda/meteor-up/issues/1091
dockerImage: 'abernix/meteord:base',
name: 'mediastorm',
path: '/Users/danielwild/git-local/media-storm',
servers: {
one: {}
},
buildOptions: {
serverOnly: true,
debug: true,
cleanAfterBuild: true // default
},
env: {
ROOT_URL: 'http://13.210.54.191',
MONGO_URL: 'mongodb://localhost/mediastorm'
},
deployCheckWaitTime: 30 //default 10
},
mongo: {
oplog: true,
port: 27017,
servers: {
one: {}
}
}
};