heroku: make env var customizable
parent
e79c426c6e
commit
321763710d
18
app.json
18
app.json
|
@ -1 +1,17 @@
|
||||||
{"stack": "container"}
|
{
|
||||||
|
"stack": "container",
|
||||||
|
"env": {
|
||||||
|
"DEBUG": {
|
||||||
|
"value": 1,
|
||||||
|
"required": false
|
||||||
|
},
|
||||||
|
"CACHE": {
|
||||||
|
"value": "diskcache",
|
||||||
|
"required": false
|
||||||
|
},
|
||||||
|
"CACHE_SIZE": {
|
||||||
|
"value": 1073741824,
|
||||||
|
"required": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -1,9 +1,3 @@
|
||||||
setup:
|
|
||||||
config:
|
|
||||||
DEBUG: 1
|
|
||||||
CACHE: diskcache
|
|
||||||
CACHE_SIZE: 1073741824
|
|
||||||
|
|
||||||
build:
|
build:
|
||||||
docker:
|
docker:
|
||||||
web: Dockerfile
|
web: Dockerfile
|
||||||
|
|
Loading…
Reference in New Issue