pslockout/authserver
2018-09-12 01:45:37 -06:00
..
authserver Activate django-rest-framework and expose user model 2018-09-12 01:45:37 -06:00
.gitignore Create directory for auth server 2018-09-12 00:14:06 -06:00
manage.py Create empty django project and app 2018-09-12 00:17:09 -06:00
README.md Add setup instructions 2018-09-12 00:21:26 -06:00

Setup:

$ virtualenv -p python3 env
$ . env/bin/activate
(env) $ pip install -r requirements.txt
(env) $ python manage.py migrate
(env) $ python manage.py createsuperuser --email admin@example.com --username admin
(env) $ python manage.py runserver