https://github.com/ctuanle/learn-fastapi
Learn FastAPI and authentication with JWT
https://github.com/ctuanle/learn-fastapi
docker fastapi jsonwebtoken python
Last synced: 3 months ago
JSON representation
Learn FastAPI and authentication with JWT
- Host: GitHub
- URL: https://github.com/ctuanle/learn-fastapi
- Owner: ctuanle
- Created: 2021-12-24T21:59:33.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-25T11:13:04.000Z (over 4 years ago)
- Last Synced: 2026-01-03T22:54:04.642Z (6 months ago)
- Topics: docker, fastapi, jsonwebtoken, python
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Learn : FastAPI and auth with JWT
## Installation
pipenv install -r requirements.txt
## Run
uvicorn main:app --reload
or with a specified port
uvicorn main:app --port 3000 --reload
## Result:
Visit [localhost:8000](http://localhost:3000/)
## API Docs
Docs : [localhost:8000/docs](http://localhost:3000/docs)