This service is simulating loan processing.
- 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
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
- This app has deployment at Heroku https://loan-service.herokuapp.com/docs