Add setup instructions

This commit is contained in:
Tanner Collin 2018-09-12 00:21:26 -06:00
parent 2d1cc332ff
commit f081c38209

10
authserver/README.md Normal file
View File

@ -0,0 +1,10 @@
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
```