Skip to content

Latest commit

 

History

History

demo

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Back-end demo

Provide back-end example following clean architecture design concepts.

  • breadpan package : Base classes
  • todo package : To-Do business logic by using breadpan package.
  • apps : RESTful API server example by using todo package.

Concepts

  • todo package

Requirements

  • python3
  • flask
  • flask_restful

Setup

virtualenv -p python3 venv
source venv/bin/activate
pip install -r apps/flask/requirements.txt 

Init

make init

Run

make run

Test

make test

Clean up

make clean