- Django REST framework for a powerful API
- Django ORM for interacting with the database
Steps to locally setup development after cloning the project (tested on Ubuntu).
Have Python 3.8 installed and in PATH. Installing Python: https://realpython.com/installing-python/
python3 --version
# Python 3.8.2python3 -m venv venv
source venv/bin/activate
pip install -r src/requirements.txtRun the database creation with docker-compose
docker-compose up -dThe Django API is now accessible at http://localhost:8000/api/sample
*Note that it is only tested with Firefox Driver