This repository contains the back-end of a recommendation system using semantic search.
Recommendation system code can be found at: amazon-semantic-search
The development was entirely made in Django a framework in Python used to create web services.
API can be found here: https://semanticsearchamazon.herokuapp.com/
End points:
- /api/recommendations/ (Used to insert feedbacks from users about a recommendation)
- Create a virtualEnv in the source
virtualenv -p python3 venv - Activate the virtual env
source venv/bin/activate - Install the dependencies on the virtual env
pip install -r src/requirements.txt - Execute the migrations on the database
python src/manage.py migrate