-
Notifications
You must be signed in to change notification settings - Fork 30
/
app.json
42 lines (42 loc) · 1.18 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
{
"name": "Falco",
"description": "A Heroku version of Falco",
"repository": "https://github.com/theodo/falco",
"logo": "https://user-images.githubusercontent.com/2587348/51670042-0f2b6a80-1fc6-11e9-8080-c3195853ba62.png",
"keywords": ["webpagetest", "performance"],
"stack": "container",
"addons": ["heroku-postgresql:hobby-dev", "heroku-redis"],
"env": {
"DB_CYPHER_KEY": {
"description": "This gets generated",
"generator": "secret"
},
"SECRET_KEY": {
"description": "This gets generated",
"generator": "secret"
},
"EMAIL_ADMIN": {
"description": "This email will be assigned to the `admin` account",
"value": "[email protected]",
"required": true
},
"ALLOWED_HOST": {
"description": "The URL the application will be available on. See https://docs.djangoproject.com/fr/2.2/ref/settings/#allowed-hosts",
"value": ".herokuapp.com"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"worker": {
"quantity": 1,
"size": "free"
}
},
"scripts": {
"postdeploy": "./postdeploy.sh"
},
"success_url": "/admin/login/?next=/admin/core/user/1/password/"
}