-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmup.json
42 lines (34 loc) · 1.33 KB
/
mup.json
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
{
// Server authentication info
"servers": [
{
"host": "104.236.225.41",
"username": "hmm",
"pem": "~/.ssh/id_rsa"
}
],
// Install MongoDB in the server, does not destroy local MongoDB on future setup
"setupMongo": false,
// WARNING Node.js is required! Only skip if you already have Node.js installed on server.
"setupNode": false,
// WARNING If nodeVersion omitted will setup 0.10.36 by default. Do not use v, only version number.
"nodeVersion": "0.10.36",
// Install PhantomJS in the server
"setupPhantom": false,
// Show a progress bar during the upload of the bundle to the server.
// Might cause an error in some rare cases if set to true, for instance in Shippable CI
"enableUploadProgressBar": true,
// Application name (No spaces)
"appName": "accountsSvc",
// Location of app (local directory)
"app": "/Users/harrisonmiller/CodeProjects/accountsSvc",
// Configure environment
"env": {
"PORT": 30480,
"MONGO_URL": "mongodb://ventureappofficial:Greetsy2015@db1.ventureappofficial.me:27017/admin",
"MONGO_OPLOG_URL": "mongodb://oplogger:Greetsy2015@db1.ventureappofficial.me:27017/local?authSource=admin",
"REDIS_URL": "redis://greetsy2015greetsy2015@db2.ventureappofficial.me:6379",
"REDIS_CONFIGURE_KEYSPACE_NOTIFICATIONS":1,
"METEOR_ENV": "production"
}
}