-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
54 lines (54 loc) · 1.86 KB
/
app.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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "Peer-tutoring",
"description": "Application for managing peer-tutoring services",
"env": {
"PORT": {
"description": "The port on which to run the server",
"value": "3000"
},
"SERVICE_NAME": {
"description": "What is the name of your service?",
"value": "CSUS Helpdesk"
},
"FRONTEND_ADDRESS_DEV": {
"description": "The development frontend address",
"value": "localhost:1337"
},
"FRONTEND_ADDRESS_DEPLOY": {
"description": "The deployment frontend address",
"value": "helpdesk.mcgill-csus.ca"
},
"COOKIE_SECRET": {
"description": "The cookie secret for your application",
"generator": "secret"
},
"JWT_RESET_PWD_SECRET": {
"description": "The reset password secret for your application",
"generator": "secret"
},
"JWT_CONFIRM_ACC_SECRET": {
"description": "The confirm password secret for your application",
"generator": "secret"
},
"JWT_INVITE_SECRET": {
"description": "The invite secret for your application",
"generator": "secret"
},
"SENDGRID_API_KEY": {
"description": "The sendgrid api key for your application (follow https://devcenter.heroku.com/articles/sendgrid for more information)",
"value": ""
},
"NO_REPLY_EMAIL": {
"description": "The email you want your emails to be sent from",
"value": ""
},
"TZ": {
"description": "The timezone you are running your service in",
"value": "America/New_York"
}
},
"addons": [
"mongolab", "sendgrid:starter"
],
"keywords": ["peer-tutoring", "node", "express", "mongo"]
}