Skip to content

SheethalBangera/Auth-Server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Auth Server using Flask

Simple auth server built using Flask and PostgreSQL

Setup

  • Clone the repository
git clone https://github.com/SheethalBangera/Auth-Server.git
  • Install dependencies
pip install -r requirements.txt
  • Setup database
CREATE TABLE users(
    userId Varchar(100) Primary key,
    email VARCHAR(100) UNIQUE NOT NULL,
    password Varchar(128) NOT NULL,
    name Text,
    age int
);
  • Run Server
python app.py

About

Auth Server using Flask and session management with jwt

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages