From 3894715c8c0677934ddbf0fbe31f3bb431dafa17 Mon Sep 17 00:00:00 2001 From: AlessandroMiola Date: Fri, 29 Mar 2024 23:52:44 +0100 Subject: [PATCH] chore: update readme --- .gitignore | 2 ++ README.md | 7 ++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 7225c9e..e5ae50a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ __pycache__ .vscode/ .pytest_cache/ .ruff_cache +.env +db-data/ diff --git a/README.md b/README.md index aeabf7f..de0b72c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,13 @@ # auth-in-fastapi-notes Assorted notes on **authentication** and **authorization** in `FastAPI`. Intended to serve as _personal_ learning resource. +![401 Cat](https://httpcats.com/401.jpg) + +## Motivation +Besides being interested in grasping the nuances of **authentication** and **authorization** in (and with) `FastAPI`, I'd like to take the chance to experiment with `SQLModel`, `FastUI` and `MkDocs` as well. + ## References - [Official FastAPI tutorial](https://fastapi.tiangolo.com/learn/) - [Building Data Science Applications with FastAPI - François Voron](https://www.amazon.it/Building-Data-Science-Applications-FastAPI/dp/1801079218/ref=sr_1_1?crid=1IYBL36XL6NSP&dib=eyJ2IjoiMSJ9.9qNZ-FDMPnD5O9gjsS0JjhnKFzRvg-_u1ebi0AXmkQnGjHj071QN20LucGBJIEps.F9TEUYPEUJhGe_tka1eyX_-Aqz2RU6pfwhXHAqp2mOs&dib_tag=se&keywords=francois+voron+fastapi&qid=1711230466&sprefix=%2Caps%2C160&sr=8-1) - [FastAPI, Modern Python Web Development - Bill Lubanovic](https://www.amazon.it/FastAPI-English-Bill-Lubanovic-ebook/dp/B0CLKZJSGV/ref=sr_1_1?__mk_it_IT=%C3%85M%C3%85%C5%BD%C3%95%C3%91&crid=28VDYBD8BR4BH&dib=eyJ2IjoiMSJ9.HS0ZhNFcQphEJqcEkyVZbw.FbU2KbkL1zNLeGVzLk9p3o_oIQipAGAi9yaEnkk3k0M&dib_tag=se&keywords=fastapi+lubanovic&qid=1711230503&sprefix=fastapi+lubanovic%2Caps%2C102&sr=8-1) -- [Tiangolo's full-stack-fastapi-template](https://github.com/tiangolo/full-stack-fastapi-template) \ No newline at end of file +- [Tiangolo's full-stack-fastapi-template](https://github.com/tiangolo/full-stack-fastapi-template)