Spaces:
Running
Running
"""Run tasks for the project.""" | |
# %% IMPORTS | |
from invoke import task | |
from invoke.context import Context | |
# %% TASKS | |
def app(ctx: Context) -> None: | |
"""Run the main application.""" | |
ctx.run("gradio app.py") | |
def all(_: Context) -> None: | |
"""Run all run tasks.""" | |