Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lakshmankishore/simpleauthapp
This is a simple authentication web app built using flask as backend API and JWT for access token.
https://github.com/lakshmankishore/simpleauthapp
flask flask-cors flask-jwt-extended html-css-javascript jwt jwt-authentication
Last synced: about 1 month ago
JSON representation
This is a simple authentication web app built using flask as backend API and JWT for access token.
- Host: GitHub
- URL: https://github.com/lakshmankishore/simpleauthapp
- Owner: LakshmanKishore
- Created: 2022-05-22T15:30:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-22T15:31:25.000Z (over 2 years ago)
- Last Synced: 2024-10-24T16:54:28.147Z (3 months ago)
- Topics: flask, flask-cors, flask-jwt-extended, html-css-javascript, jwt, jwt-authentication
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Authentication Web App
A simple authentication web app built to
know about JWT access tokens.## Tech Stack
**Client:** HTML, CSS, Javascript
**Server:** Flask
## Run LocallyClone the project
```bash
git clone https://github.com/LakshmanKishore/imageCompression.git
```Go to the project directory
```bash
cd my-project
```Install dependencies
```bash
pip install -r requirements.txt
```Go to backend directory
```bash
cd backend
```Start the server
```bash
python app.py
```
## Lessons LearnedI was able to learn more about usage of JWT access token.
I was able to build a simple authentication application.
I learnt about creating API using Flask.