We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60b6406 commit 93157e5Copy full SHA for 93157e5
ReadMe.md
@@ -1,6 +1,26 @@
1
# Overview
2
This a replacement for [Django GraphQL Auth](https://github.com/PedroBern/django-graphql-auth) that works with latest Django and Graphene
3
4
+## Quick Start
5
+
6
+```bash
7
+# clone the repo
8
+git clone
9
+# install deps
10
+pip install -r requirements.txt
11
+# Build app
12
+python setup.py sdist
13
+# Install it
14
+python -m pip install dist/django-graph-auth-0.1.0.tar.gz
15
+# Test app migrate
16
+python testproject/manage.py migrate
17
+#
18
+python testproject/manage.py runserver
19
+# Install in a custom project
20
+python -m pip install path/to/dist/django-graph-auth-0.1.0.tar.gz
21
22
+```
23
24
25
## TODO
26
- [ ] Update ReadMe
0 commit comments