This repository has been archived on 2024-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
tcl-filtrage/tasks.py
2021-12-04 17:08:05 +01:00

6 lines
108 B
Python

from invoke import task
@task
def run(ctx):
ctx.run("uvicorn main:app --reload", pty=True, echo=True)