Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,24 @@ A framework for launching new Django Rest Framework projects quickly. Comes with
1. Make sure Python 3.7x and Pipenv are already installed. [See here for help](https://djangoforbeginners.com/initial-setup/).
2. Clone the repo and configure the virtual environment:

Using Pipenv:

```
$ git clone https://github.com/wsvincent/drfx.git
$ cd drfx
$ pipenv install
$ pipenv shell
```

Using venv
```
$ git clone https://github.com/wsvincent/drfx.git
$ cd drfx
$ python -m venv drfx
$ source drfx/bin/activate
$ pip install -r requirements.txt
```

3. Set up the initial migration for our custom user models in users and build the database.

```
Expand Down
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
django~=3.1.0
djangorestframework~=3.12.0
django-rest-auth~=0.9
django-allauth==0.42.0