-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
38 lines (38 loc) · 1.04 KB
/
app.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "Tally",
"description": "A check-in and member point aggregation system",
"repository": "https://github.com/ieeeut/tally",
"env": {
"NODE_ENV": {
"description": "dev or production",
"value": "production"
},
"ADMIN_EMAIL": {
"description": "Default admin user email",
"value": "comms@ieeeut.org"
},
"ADMIN_PASS": {
"description": "Default admin user password",
"value": "hunter2"
},
"TOKEN_SECRET": {
"description": "Long random string used to verify JWT tokens for user authentication",
"value": "secret"
},
"MAILGUN_USERNAME": {
"description": "Username to access mailgun api",
"value": "postmaster@sandbox67c118365e564798a8864434e4b2a3cb.mailgun.org"
},
"MAILGUN_PASSWORD": {
"description": "Password to access mailgun api",
"value": "ed49d942fd9e6c11208ee3aacb29df9d"
},
"ROOT_URL": {
"description": "Root URL for your system",
"value": "http://mydomain.com"
}
},
"addons": [
"mongolab"
]
}