django-elm-auth-with-jwt


Description

django-elm-auth-with-jwt is an example of how you can implement JSON Web Token (JWT) authentication using django & django rest framework as a backend and elm as a frontend.

How to run

Clone the repository:

➜ git clone https://github.com/apirobot/django-elm-auth-with-jwt.git

Create and activate virtualenv:

➜  virtualenv -p python3 .venv
➜  source .venv/bin/activate

Install dependencies:

../backend  ➜  pip install -r requirements.txt
../frontend ➜  elm-package install

Run migrations:

../backend ➜  python manage.py makemigrations
../backend ➜  python manage.py migrate

Start up backend:

../backend ➜  python manage.py runserver

Start up frontend using elm-live:

../frontend ➜  elm-live --port=3000 --output=elm.js src/Main.elm --pushstate --open --debug

We are done.