diff --git a/Taskfile.yml b/Taskfile.yml index e4be415..aac636e 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -106,6 +106,22 @@ tasks: - bot2:format - bot2:typecheck + bot2:service: + dir: bot2 + desc: Run the Bot Service + cmds: + - uv run python -m bot.service + deps: + - bot2:install + + bot2:service:dev: + dir: bot2 + desc: Run the Bot Service with auto-reload for development + cmds: + - uv run uvicorn bot.service.bot_service:app --reload --host 0.0.0.0 --port 8080 + deps: + - bot2:install + # # backend (golang) tasks #