From c01e0aa5b91e3f6fe53cfa37f91fe5edab25d54d Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Thu, 7 Jul 2022 21:18:08 +0200 Subject: [PATCH] Add update task --- tasks.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tasks.py b/tasks.py index b3704fc..452658f 100644 --- a/tasks.py +++ b/tasks.py @@ -123,3 +123,9 @@ def download_twemoji(ctx): def configuration_wizard(ctx): # type: (Context) -> None run("PYTHONPATH=. poetry run python scripts/config_wizard.py", pty=True, echo=True) + + +@task(compile_scss, migrate_db) +def update(ctx): + # type: (Context) -> None + print("Done")