- Login with JWT
- middleware for JWT refresh if expiring
- Registration
- Dynamic navbar switching when user logs in / logs out
- Password Change
- Screen size responsive components & Navbar
- Clone the repo
- cd frontend && npm install
- enter your backend url in actions/backendUrl.js or add an environment variable named REACT_APP_DEV_URL
- npm start
- cd backend, create a virtualenv, activate it and pip (or) pip3 install -r requirements.txt
- To create the database for the application: python manage.py makemigrations and then python manage.py migrate
- To run the server: python manage.py runserver 3000