- This repo is meant to a take home assignment for a internship interview process.
- This is full stack application is built with django in backend and react.js in frontend.
- It shows the REST API functionality in the backend and state management with react in the frontend.
cd into backend
cd backend
create a virtual env
virtualenv env -p python3.5
source env/bin/activate
install all the dependencies in the requirements.txt
pip3 install requirements.txt
migrate the migrations
./manage.py migrate
start the django server
./manage.py runserver
you can install postgres by following: link