Add update task
This commit is contained in:
parent
dfe7d692e3
commit
c01e0aa5b9
1 changed files with 6 additions and 0 deletions
6
tasks.py
6
tasks.py
|
@ -123,3 +123,9 @@ def download_twemoji(ctx):
|
||||||
def configuration_wizard(ctx):
|
def configuration_wizard(ctx):
|
||||||
# type: (Context) -> None
|
# type: (Context) -> None
|
||||||
run("PYTHONPATH=. poetry run python scripts/config_wizard.py", pty=True, echo=True)
|
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")
|
||||||
|
|
Loading…
Reference in a new issue