You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+33-12Lines changed: 33 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,33 +25,54 @@ This uis how I set up a new FastAPI project. I hope this is helpful.
25
25
|[virtualenv](https://virtualenv.pypa.io/en/stable/installation.html)| Again I am not trying to get fancy. ```py -m pip install virtualenv```|
26
26
|[FastAPI](https://github.com/tiangolo/fastapi)| I usally install all related packages in my venv. ```pip install fastapi[all]```|
27
27
|[Docker](https://www.docker.com/products/docker-desktop) | (Optional) I use it to startup DBs instead of installing directly. Will make your life easier. There are also images for bundled FastAPI environmets on Docker Hub.
28
-
|[ODMantic](https://art049.github.io/odmantic/)| ORM for MongoDB with great model and document support. |
28
+
|[ODMantic](https://art049.github.io/odmantic/)|(Optional) ORM for MongoDB with great model and document support. |
29
29
|[TortoiseORM](https://tortoise-orm.readthedocs.io/en/latest/) | (Optional) ASYNC ORM that works well with FastAPI and Postgres/MySQL
0 commit comments