6 lines
108 B
Python
6 lines
108 B
Python
from invoke import task
|
|
|
|
|
|
@task
|
|
def run(ctx):
|
|
ctx.run("uvicorn main:app --reload", pty=True, echo=True)
|