From 2e6d07b21790661157d4a8eba1d92421e2454edd Mon Sep 17 00:00:00 2001 From: David Barnes <barnesdavidj@gmail.com> Date: Tue, 28 Jun 2022 10:59:44 -0400 Subject: [PATCH] Update docs to reflect using pypi to install over github. --- README.md | 8 ++------ docs/source/quickstart.rst | 4 ++-- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7df00fd..8fe2e44 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,9 @@ and [Symfony](https://symfony.com/) frameworks.  ## Quickstart -1. Install the Django App via GitHub for now. Working on getting on Pypi soon. +1. Install the Django App via Pypi. ```shell - python -m pip install -e git+https://github.com/DJBarnes/django-dump-die@master - ``` - or - ```shell - pipenv install -e "git+https://github.com/DJBarnes/django-dump-die#egg=django-dump-die" + python -m pip install django-dump-die ``` <br> diff --git a/docs/source/quickstart.rst b/docs/source/quickstart.rst index e326db2..a9e3bdb 100644 --- a/docs/source/quickstart.rst +++ b/docs/source/quickstart.rst @@ -1,11 +1,11 @@ Quickstart ********** -1. Install the Django App via GitHub for now. Working on getting on Pypi soon. +1. Install the Django App via Pypi. .. code-block:: bash - python -m pip install -e git+https://github.com/DJBarnes/django-dump-die@master + python -m pip install django-dump-die 2. Add the corresponding app to your Django ``settings.py`` file: -- GitLab