Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
#
Expand Down
Loading