632 B
632 B
description
| description |
|---|
| How to run the application using uv |
-
Initialize Project (Already done) If you haven't already:
uv init -
Install Dependencies (Already done) Install required packages:
uv add -r requirements.txt -
Run Application You can run the application directly using
uv run. This automatically uses the virtual environment managed byuv.Option A: Using the run script (Recommended)
uv run run.pyOption B: Using Uvicorn directly
uv run uvicorn app.main:app --reload