9 lines
382 B
Plaintext
9 lines
382 B
Plaintext
Here's the `requirements.txt` file for the 'blog_app' FastAPI backend with the requested dependencies:
|
|
```
|
|
fastapi
|
|
uvicorn
|
|
sqlalchemy
|
|
pydantic
|
|
loguru
|
|
```
|
|
This file lists the required Python packages and their versions (if not specified, the latest version will be installed). You can install these dependencies by running `pip install -r requirements.txt` in your project directory. |