forked from formspree/formspree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
122 lines (122 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "formspree",
"description": "",
"scripts": {},
"env": {
"ACCOUNT_SENDER": {
"required": false
},
"API_ROOT": {
"required": true,
"value": "https://formspree.io"
},
"ARCHIVED_SUBMISSIONS_LIMIT": {
"required": false
},
"CONTACT_EMAIL": {
"required": true,
"value": "[email protected]"
},
"CONTACT_FORM_HASHID": {
"required": false
},
"DEFAULT_SENDER": {
"required": false
},
"FLASK_APP": {
"required": true,
"value": "formspree"
},
"HASHIDS_SALT": {
"required": true,
"generator": "secret"
},
"NEWSLETTER_EMAIL": {
"required": false
},
"NONCE_SECRET": {
"required": true,
"generator": "secret"
},
"RATE_LIMIT": {
"required": false
},
"RECAPTCHA_ENABLED": {
"required": false
},
"RECAPTCHA_KEY": {
"required": false
},
"RECAPTCHA_SECRET": {
"required": false
},
"SECRET_KEY": {
"required": true,
"generator": "secret"
},
"SENDGRID_PASSWORD": {
"required": true
},
"SENDGRID_USERNAME": {
"required": true
},
"SERVICE_NAME": {
"required": true,
"value": "Formspree"
},
"HEROKU_APP_NAME": {
"required": true
},
"SERVICE_UPGRADE": {
"required": true
},
"SERVICE_URL": {
"required": true
},
"STRIPE_PUBLISHABLE_KEY": {
"required": true
},
"STRIPE_SECRET_KEY": {
"required": true
},
"STRIPE_TEST_PUBLISHABLE_KEY": {
"required": true
},
"STRIPE_TEST_SECRET_KEY": {
"required": true
}
},
"formation": {},
"addons": [
"librato",
"mailgun",
"papertrail",
"heroku-postgresql",
"heroku-redis",
"redistogo",
"sendgrid"
],
"environments": {
"test": {
"buildpacks": [
{"url": "heroku/python"},
{"url": "heroku/nodejs"},
{"url": "https://github.com/heroku/heroku-buildpack-google-chrome"}
],
"env": {
"HASHIDS_SALT": "a salt",
"NONCE_SECRET": "y0ur_n0nc3_s3cr3t",
"SECRET_KEY": "y0ur_s3cr3t_k3y",
"FLASK_APP": "formspree",
"CDN_DEBUG": "true",
"HEROKU_CI": "true"
},
"addons": ["heroku-postgresql:in-dyno", "heroku-redis:in-dyno"],
"scripts": {
"test-setup": "flask",
"test": "flask test"
}
}
},
"buildpacks": [{"url": "heroku/python"}, {"url": "heroku/nodejs"}]
}