We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f11c40d commit c729b73Copy full SHA for c729b73
taskfile.yaml
@@ -4,12 +4,12 @@ tasks:
4
run:
5
desc: Run
6
cmds:
7
- - uv run uvicorn celine.dt.main:create_app --reload --host 0.0.0.0 --port 8002
+ - .venv/bin/uvicorn celine.dt.main:create_app --reload --host 0.0.0.0 --port 8002
8
9
debug:
10
desc: "Run development server with debugger"
11
12
- - LOG_LEVEL=DEBUG DEBUG_ATTACH=nowait DEBUG_PORT=48002 uv run uvicorn celine.dt.main:create_app --reload --host 0.0.0.0 --port 8002
+ - LOG_LEVEL=DEBUG DEBUG_ATTACH=nowait DEBUG_PORT=48002 .venv/bin/uvicorn celine.dt.main:create_app --reload --host 0.0.0.0 --port 8002
13
14
test:
15
desc: Run tests
0 commit comments