Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.22 KB

README.md

File metadata and controls

28 lines (19 loc) · 1.22 KB

MeetDoc Web

Fullstack web using Python Flask as Backend and React as Frontend

Frontend Web

API Web

Flask (Backend)

Tools & Libraries

Authentication

Using Flask-JWT-Extended library to authenticate user by JWT. Token stored in httponly Cookie with X-CSRF double submit token. Access token expired in 1 hour and refresh token expired in 1 month.

React (Frontend)

Tools & Libraries

Authentication

Store access token and refresh token in httponly Cookie (automatically by the server) and store X-CSRF double submit token in local storage.