-
Notifications
You must be signed in to change notification settings - Fork 80
/
app.json
52 lines (52 loc) · 1.41 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
{
"name": "Open Marriage",
"description": "The open source website for Leslie Verploegen's and Eric Ferraiuolo's wedding",
"keywords": [
"wedding",
"website",
"node"
],
"addons": [
"heroku-postgresql:hobby-dev",
"adminium:petproject"
],
"env": {
"PATH": "bin:node_modules/.bin:/usr/local/bin:/usr/bin:/bin",
"NODE_ENV": {
"description": "Signals to app to run in development or production mode.",
"value": "production"
},
"WEB": {
"description": "The command to run to start the app.",
"value": "node server.js"
},
"INVITATION_SECRET": {
"description": "Secret string used to encrypt/decrypt the invitation IDs.",
"generator": "secret"
},
"SESSION_SECRET": {
"description": "Secret string used to encrypt/decrypt the session cookie.",
"generator": "secret"
},
"MAILGUN_API_SERVER": {
"description": "Mailgun API endpoint.",
"required": false
},
"MAILGUN_DOMAIN": {
"description": "Mailgun domain associated with your Mailgun account.",
"required": false
},
"MAILGUN_API_KEY": {
"description": "Secret string used to sign Mailgun HTTP requests.",
"required": false
},
"PICTOS": {
"description": "ID of Pictos server icon font set.",
"required": false
},
"TYPEKIT": {
"description": "ID of Typekit set.",
"required": false
}
}
}