forked from breatheco-de/apiv2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
39 lines (39 loc) · 922 Bytes
/
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
{
"stack": "heroku-20",
"name": "BreatheCode API",
"description": "Technology for Learning",
"repository": "https://github.com/breatheco-de/apiv2",
"website": "https://breathecode.herokuapp.com",
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "heroku/pgbouncer"
}
],
"environments": {
"test": {
"env": {
"ENV": "development",
"LOG_LEVEL": "DEBUG"
},
"addons": ["heroku-postgresql:in-dyno", "heroku-redis:in-dyno"],
"scripts": {
"test": "pipenv run ptest_ci",
"postdeploy": "python manage.py migrate"
}
},
"review": {
"env": {
"ENV": "development",
"LOG_LEVEL": "DEBUG"
},
"addons": ["heroku-postgresql:in-dyno", "heroku-redis:in-dyno"],
"scripts": {
"test": "pipenv run ptest_ci",
"postdeploy": "python manage.py migrate"
}
}
}
}