-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample_mup.js
More file actions
53 lines (46 loc) · 1.19 KB
/
example_mup.js
File metadata and controls
53 lines (46 loc) · 1.19 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
module.exports = {
servers: {
one: {
// TODO: set host address, username, and authentication method
host: 'localhost',
username: 'root',
// pem: './path/to/pem'
password: '******'
// or neither for authenticate from ssh-agent
}
},
app: {
// TODO: change app name and path
name: 'OncoText_Web',
path: '/home/nlp/OncoText_Web',
servers: {
one: {},
},
buildOptions: {
serverOnly: false,
},
env: {
// TODO: Change to your app's url
// If you are using ssl, it needs to start with https://
ROOT_URL: 'http://domain.com',
MONGO_URL: 'mongodb://localhost/OncoText_Web',
},
// ssl: { // (optional)
// // Enables let's encrypt (optional)
// autogenerate: {
// email: 'email.address@domain.com',
docker: {
// change to 'abernix/meteord:base' if your app is using Meteor 1.4 - 1.5
image: 'abernix/meteord:node-8.4.0-base',
},
// Show progress bar while uploading bundle to server
// You might need to disable it on CI servers
enableUploadProgressBar: true
},
mongo: {
version: '3.4.1',
servers: {
one: {}
}
}
};