-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
45 lines (45 loc) · 1.48 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
{
"name": "Photostreamer Server",
"description": "Displays photos stored on Amazon S3 that are being streamed live from the field.",
"repository": "https://github.com/achavez/photostreamer-server",
"success_url": "/login",
"keywords": [
"node",
"express"
],
"addons": [
"mongolab:sandbox",
"mailgun:starter"
],
"scripts": {
"postdeploy": "node lib/init"
},
"env": {
"NODE_ENV": "production",
"APP_NAME": {
"description": "The same app name you entered above (if you didn't enter one, you should).",
"required": true
},
"HTTP_URL": {
"description": "If you plan to serve Photostreamer at a URL other than its .herokuapp.com address, enter its http:// version here.",
"required": false
},
"HTTPS_URL": {
"description": "And provide the https:// version here. Otherwise we'll direct SSL traffic to the .herokuapp.com address.",
"required": false
},
"SESSION_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies. Don't change this unless you know what you're doing.",
"generator": "secret",
"required": true
},
"FIRST_USER_NAME": {
"description": "The name for the first user account. This can be changed later.",
"required": true
},
"FIRST_USER_EMAIL": {
"description": "The e-mail address for the first user account. You'll need access to this address to login for the first time.",
"required": true
}
}
}