From 7909053828596c14b29fb31abd0f25ad4998c95f Mon Sep 17 00:00:00 2001 From: Sergey Lyapustin Date: Fri, 24 Jun 2022 20:22:40 +0200 Subject: [PATCH] Enable worker by default. --- app.json | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/app.json b/app.json index 25f57d8..9bf9992 100644 --- a/app.json +++ b/app.json @@ -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", @@ -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"