Skip to content

Latest commit

 

History

History
30 lines (15 loc) · 744 Bytes

README.md

File metadata and controls

30 lines (15 loc) · 744 Bytes

FLASK RESTFUL API BOILER-PLATE WITH JWT

To init project:

Start pip virtual env: virtualenv venv

Install pip requirememts: pip install -r requirements.txt (*note: make python-packages below also works)

Source virtual env: source venv/bin/activate

Terminal commands

To clean excess files: make clean

To install packages: make python-packages

To run test: make tests

To run application: make run

To update db (PostgreSQL): make db-update

Viewing the app

Open the following url on your browser to view swagger documentation
http://127.0.0.1:5000/

Credit: https://www.freecodecamp.org/news/structuring-a-flask-restplus-web-service-for-production-builds-c2ec676de563/