From f081c382093d5ecf83106cc5a0f761aa4223cee0 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Wed, 12 Sep 2018 00:21:26 -0600 Subject: [PATCH] Add setup instructions --- authserver/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 authserver/README.md diff --git a/authserver/README.md b/authserver/README.md new file mode 100644 index 0000000..f96316d --- /dev/null +++ b/authserver/README.md @@ -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 +```