Skip to content

Commit c729b73

Browse files
committed
chore: run uvcorn from venv
1 parent f11c40d commit c729b73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

taskfile.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ tasks:
44
run:
55
desc: Run
66
cmds:
7-
- uv run uvicorn celine.dt.main:create_app --reload --host 0.0.0.0 --port 8002
7+
- .venv/bin/uvicorn celine.dt.main:create_app --reload --host 0.0.0.0 --port 8002
88

99
debug:
1010
desc: "Run development server with debugger"
1111
cmds:
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
12+
- 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
1313

1414
test:
1515
desc: Run tests

0 commit comments

Comments
 (0)