-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
43 lines (43 loc) · 1.12 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
{
"name": "sakuten-api-testflight",
"scripts": {},
"env": {
"FLASK_CONFIGURATION": {
"description": "The config to use. This should be 'preview' to run in Heroku.",
"value": "preview"
},
"GIT_REPO_URL": {
"description": "The git repository URL",
"value": "https://github.com/Sakuten/devenv.git"
},
"PYTHONPATH": {
"description": "The path used for python name resolution.",
"value": "./backend/"
},
"SECRET_KEY": {
"description": "The encryption key to use in authenication (DON'T USE THIS IN PRODUCTION)",
"value": "my4ViaJb4rek9YIRLFS_3E0fT88QiRhdK8uKOjHXhrA="
},
"RECAPTCHA_SECRET_KEY": {
"description": "The secret key to use in reCAPTCHA validation (DON'T USE THIS IN PRODUCTION)",
"value": "6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe"
}
},
"formation": {},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "10"
}
}
],
"buildpacks": [
{
"url": "https://github.com/Sakuten/heroku-buildpack-git-submodule.git"
},
{
"url": "heroku/python"
}
]
}