forked from ForumMagnum/ForumMagnum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmup.js
More file actions
47 lines (45 loc) · 1.2 KB
/
mup.js
File metadata and controls
47 lines (45 loc) · 1.2 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
module.exports = {
appName: 'development',
servers: {
one: {
host: '198.199.111.153',
username: 'discordius',
//pem: 'Users/Discordius/.ssh/Telescope', // mup doesn't support '~' alias for home directory
password: '6fpfghyLnVIP',
// or leave blank to authenticate using ssh-agent
// opts: {
// port: 80,
// },
}
},
meteor: {
name: 'Telescope-development',
path: '../', // mup doesn't support '~' alias for home directory
port: 82, // useful when deploying multiple instances (optional)
docker: {
image: 'abernix/meteord:base', // use this image if using Meteor 1.4+
},
servers: {
one: {}, two: {}, three: {} // list of servers to deploy, from the 'servers' list
},
buildOptions: {
serverOnly: true,
debug: true,
cleanAfterBuild: true, // default
//buildLocation: '/LessWrong', // defaults to /tmp/<uuid>
},
env: {
ROOT_URL: 'http://198.199.111.153',
MONGO_URL: 'mongodb://localhost/meteor',
PORT: 82,
},
deployCheckWaitTime: 120 // default 10
},
mongo: { // (optional)
oplog: true,
port: 27017,
servers: {
one: {},
},
},
};