We use uv to manage dependencies and the project software environment.
Clone the GitHub repository:
git clone https://github.com/MDverse/mdde2.git
cd mdde2Sync dependencies:
uv synccp xxx/database.db ./database.db
cp xxx/db_schema.py app/db_schema.pyRun the FastAPI web app in dev mode:
uv run fastapi dev app/main.pyThe app should be available at the following URL:
uv run uvicorn app.main:app --reload