Skip to content
This repository has been archived by the owner on Dec 24, 2024. It is now read-only.

Commit

Permalink
feat: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
1995parham committed Mar 19, 2024
1 parent c8ae95b commit ed244a9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ Can you summarize what happened? And what is the difference?
Make sure your design is clean and have multiple modules (you can use current repository to have an idea about the structure).
Use [Dependency Injection](https://fastapi.tiangolo.com/tutorial/dependencies/) to separate logic from your views.

Write tests for your API based on the [FastAPI documentation](https://fastapi.tiangolo.com/tutorial/testing/).

> [!NOTE]
> GitHub Actions is your friend, use them to test and lint your project.
## How to run?

You can run server using `uvicorn` directly,
Expand All @@ -87,7 +92,7 @@ You can run server using `uvicorn` directly,
uvicorn app.main:app --reload
```

or you can run it using the cli
or you can run it using the CLI

```bash
python main.py serve
Expand Down

0 comments on commit ed244a9

Please sign in to comment.