This project was created using the Olist backend challenge. Whis is an API to manipulate authors and books data. Python, django and django rest framework was the technologies used in this project.
You can see the API Documentation at ---
To run this project it is necessary python >= 3.8.
git clone [email protected]:daviromao/work-at-olist.git
cd work-at-olist
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 import_authors file_path
use --hide to hide the output
python manage.py runserver
Acces the local API at http://localhost:8000/
python manage.py test