Skip to content

Commit 93157e5

Browse files
committed
added quick start 📃
1 parent 60b6406 commit 93157e5

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

ReadMe.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
# Overview
22
This a replacement for [Django GraphQL Auth](https://github.com/PedroBern/django-graphql-auth) that works with latest Django and Graphene
33

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+
424

525
## TODO
626
- [ ] Update ReadMe

0 commit comments

Comments
 (0)