-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmup.js
47 lines (42 loc) · 1010 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
module.exports = {
servers: {
one: {
host: '34.248.232.47',
username: 'ubuntu',
pem: '~/Coffee.pem',
// password:
// or leave blank for authenticate from ssh-agent
}
},
meteor: {
name: 'CoffeeBreak',
path: '../',
servers: {
one: {},
},
buildOptions: {
serverOnly: true,
},
env: {
ROOT_URL: 'http://app.coffeebreak.ie',
MONGO_URL: 'mongodb://user:[email protected]:51018/appdb',
CLOUDINARY_URL : 'cloudinary://941183314595184:xrdG4UURyWxRyATypbRUVPRHNLg@dew2bujjl',
},
docker: {
// change to 'kadirahq/meteord' if your app is not using Meteor 1.4
image: 'abernix/meteord:base',
},
deployCheckWaitTime: 60,
// Show progress bar while uploading bundle to server
// You might need to disable it on CI servers
enableUploadProgressBar: false
},
mongo: {
oplog: true,
port: 27017,
version: '3.4.1',
servers: {
one: {},
},
},
};