Skip to content

Basic Flask API blank template using SQLALchemy with JWT Bearer Authorization

Notifications You must be signed in to change notification settings

aldabbasy/FlaskAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FlaskAPI

Basic Flask API structure template using SQLALchemy with JWT Bearer Authorization

Requirements:

  • Python 3
  • Virtualenv

To get started right away:

  • clone this project to your local machine
  • rename .env-dist to .env and add your config.
  • create a virtualenv by running python -m venv env
  • activate the virtualenv by running .\env\Scripts\activate
  • install all project dependencies with pip install -r requirements.txt
  • start the development server with flask run