Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 499 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 499 Bytes

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