Skip to content

Commit

Permalink
Enable worker by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
slyapustin committed Jun 24, 2022
1 parent 928761d commit 7909053
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Airflow Demo on Heroku",
"description": "Airflow Demo on Heroku",
"repository": "https://github.com/slyapustin/celery-flower-heroku",
"name": "Airflow on Heroku",
"description": "Airflow on Heroku",
"repository": "https://github.com/slyapustin/airflow-on-heroku",
"keywords": [
"airflow",
"heroku",
Expand All @@ -16,6 +16,17 @@
"description": "Airflow Home Directory Location",
"value": "/app"
}

},
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
},
"worker": {
"quantity": 1,
"size": "hobby"
}
},
"scripts": {
"postdeploy": "airflow db init"
Expand Down

0 comments on commit 7909053

Please sign in to comment.