In this project i'm trying to make a pure jwt authentication in fastapi and mongodb .
Purpose of this project is just for training and there is alot of packages to do jwt authentication or other things i have done here
- First clone the project and cd to project directory
git clone <url of the project>
cd Password-generator
- Make a python virtual env
python3 -m venv <name of your venv>
- Activate your venv
source ./venv/bin/activate
venv/bin/activate
- Install the python packages
pip install -r requirements.txt
- Run the file
uvicorn main:app --reload