-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapp.json
More file actions
30 lines (30 loc) · 693 Bytes
/
Copy pathapp.json
File metadata and controls
30 lines (30 loc) · 693 Bytes
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
{
"name": "Airflow Heroku",
"description": "Run Airflow on Heroku",
"image": "heroku/cedar:14",
"env": {
"AIRFLOW_HOME": {
"description": "Where all the information for airflow lives",
"value": "/app"
},
"AIRFLOW_SECRET_KEY": {
"description": "A secret key to verify the integrity of signed cookies",
"generator": "secret"
},
"PYTHONPATH": {
"description": "Path for python",
"value": "/app"
}
},
"scripts": {
"postdeploy": "./init_env"
},
"addons": [
"heroku-postgresql",
"heroku-redis",
"mailgun:starter"
],
"buildpacks": [
{ "url": "https://github.com/kennethreitz/conda-buildpack" }
]
}