This project was created using the Olisaude challenge. It's an API to manage (CRUD) clients and get 10 clients with the highest health risk. Python, django and django rest framework was the technologies used in this project.
You can see the API Documentation at olisaude docs
To run this project it is necessary python >= 3.8.
git clone git@github.com:daviromao/teste-dev-backend.git
cd teste-dev-backendpython3 -m venv envon Windows:
.\env\Scripts\activate on Ubuntu:
source env/bin/activatepip install requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py runserverAcces the local API at http://localhost:8000/
python manage.py test