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 [email protected]:daviromao/teste-dev-backend.git
cd teste-dev-backend
python3 -m venv env
on Windows:
.\env\Scripts\activate
on Ubuntu:
source env/bin/activate
pip install requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
Acces the local API at http://localhost:8000/
python manage.py test