-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
31 lines (31 loc) · 850 Bytes
/
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
{
"name": "HaQR",
"description": "A modular QR system for event management",
"env": {
"JWT_SECRET": {
"description": "The private key used to encrypt and decrypt the JWTs",
"value": ""
},
"ROOT_URL": {
"description": "The URL of your application",
"value": ""
},
"APPLICATION_NAME": {
"description": "The name of your application",
"value": "HaQR"
},
"GITHUB_CLIENT_ID": {
"description": "The client id of your OAuth application",
"value": ""
},
"GITHUB_CLIENT_SECRET": {
"description": "The client secret of your OAuth application",
"value": ""
}
},
"addons": [
{
"plan": "mongolab:sandbox"
}
]
}