-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmup.js
More file actions
57 lines (49 loc) · 1.33 KB
/
mup.js
File metadata and controls
57 lines (49 loc) · 1.33 KB
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
module.exports = {
servers: {
one: {
// TODO: set host address, username, and authentication method
host: '138.68.148.212',
username: 'root',
pem: '~/.ssh/id_rsa'
// password: 'acornsucksDO1'
// or neither for authenticate from ssh-agent
}
},
meteor: {
// TODO: change app name and path
name: 'UncertStudy',
path: '.',
servers: {
one: {},
},
buildOptions: {
serverOnly: true,
},
env: {
// TODO: Change to your app's url
// If you are using ssl, it needs to start with https://
ROOT_URL: 'http://138.68.148.212',
//MONGO_URL: 'mongodb://localhost/meteor',
},
docker: {
// change to 'kadirahq/meteord' if your app is not using Meteor 1.4
image: 'abernix/meteord:base',
// imagePort: 80, // (default: 80, some images EXPOSE different ports)
},
// This is the maximum time in seconds it will wait
// for your app to start
// Add 30 seconds if the server has 512mb of ram
// And 30 more if you have binary npm dependencies.
deployCheckWaitTime: 60,
// Show progress bar while uploading bundle to server
// You might need to disable it on CI servers
enableUploadProgressBar: false
},
mongo: {
port: 27017,
version: '3.4.1',
servers: {
one: {}
}
}
};