Make sure to setup your virtual environment before installing the dependencies. The requirements.txt file contains all the dependencies required to be installed before running the backend.
cd backend
py -m pipenv shell
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
The backend will run on http://127.0.0.1:8000/api/landmarks/
Run on localhost using:
npm run dev