Skip to content
This repository has been archived by the owner on Feb 16, 2021. It is now read-only.

Latest commit

 

History

History
21 lines (16 loc) · 552 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 552 Bytes

The project is based on the tutorial Python REST APIs With Flask, Connexion, and SQLAlchemy by: Doug Farrell

link: https://realpython.com/flask-connexion-rest-api/

Project Setup

  1. Create project foler
  2. Create python virtual enviornment python -m venv env
  3. Enter Virtual Enviornment cmd /k ".\env\Scripts\activate.bat"
  4. Leave virtual Env cmd /k ".\env\Scripts\deactivate.bat"

Install Flask python -m pip install Flask==1.1.1 python -m pip freeze > requirements.txt pip install -r requirements.txt

Run flask python app.py