Simple auth server built using Flask and PostgreSQL
- 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