Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arnabd64/fastapi-jwt-auth
Simple FastAPI that implements JWT authentication
https://github.com/arnabd64/fastapi-jwt-auth
fastapi-auth fastapi-sqlalchemy fastapi-template
Last synced: 2 months ago
JSON representation
Simple FastAPI that implements JWT authentication
- Host: GitHub
- URL: https://github.com/arnabd64/fastapi-jwt-auth
- Owner: arnabd64
- License: mit
- Created: 2024-09-01T03:03:58.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T11:49:23.000Z (4 months ago)
- Last Synced: 2024-09-09T13:52:57.382Z (4 months ago)
- Topics: fastapi-auth, fastapi-sqlalchemy, fastapi-template
- Language: Python
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FastAPI-JWT-Auth
Simple FastAPI that implements JWT authentication
# Run the Application
1. Clone the Repo
```bash
$ git clone https://github.com/arnabd64/FastAPI-JWT-Auth.git
$ cd FastAPI-JWT-Auth
```2. Install the dependencies
```bash
# create a virtual environment
$ python -m venv venv
$ source venv/bin/activate# install python pacakges
$ pip install -r requirements.txt
```3. Run the application
```bash
$ python main.py
```