Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 927 Bytes

README.md

File metadata and controls

40 lines (29 loc) · 927 Bytes

CircleCI codecov

Toy Loan Simulator

This service is simulating loan processing.

Requirments

  • Python >= 3.7

Makefile can be used to run few simple commands like requirements, run, lint.

pip-tools is using to manage requirements

(venv) $ pip install pip-tools

Run

There are few options to run application.

  • First option is to use virtual enviroment.

Install requirements.

(venv) $ make install

Run application.

(venv) $ make run
  • To run it with docker
$ docker build -t loan-service .
$ docker run -it -p 8000:8000 loan-service