Using Python JWT to use magic links
"prop-types": "^15.7.2", "query-string": "^6.9.0",
python --version install homebrew - depends on xcode xcode-select --install /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" brew doctor python3 --version
brew install pipenv
pipeenv shell
pipenv install django==2.2.6 pipenv install djangorestframework pipenv install djangorestframework-jwt pipenv install django-cors-headers
django-admin startproject jwtmagicsite .
'rest_framework'
'corsheaders',
'corsheaders.middleware.CorsMiddleware', # Note that this needs to be placed above CommonMiddleware
REST_FRAMEWORK
CORS_ORIGIN_WHITELIST
python manage.py migrate python manage.py createsuperuser
python manage.py runserver 127.0.0.1:8100
python manage.py startapp usercore
pipenv install configparser