From 814aa64e776e69bb54c37347f859d1bb7d4579b1 Mon Sep 17 00:00:00 2001 From: Faris Chebib Date: Thu, 10 Sep 2015 11:04:16 -0600 Subject: [PATCH] updated docs, updated gitignore --- .gitignore | 3 +++ docs/installation.rst | 13 +++++++++++++ 2 files changed, 16 insertions(+) diff --git a/.gitignore b/.gitignore index a49fd66..b8252fc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ *.egg-info dist/ docs/_build +__pycache__/ +*.swp + diff --git a/docs/installation.rst b/docs/installation.rst index 06a7c5c..2becc63 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -19,3 +19,16 @@ Once that's done, you should add ``channels`` to your That's it! Once enabled, ``channels`` will integrate itself into Django and take control of the ``runserver`` command. See :doc:`getting-started` for more. + + +Installing the lastest development version +------------------------------------------ + +To install the latest version of Channels, clone the repo, change to the repo, +change to the repo directory, and pip install it into your current virtual +environment:: + + $ git clone git@github.com:andrewgodwin/channels.git + $ cd channels + $ + (environment) $ pip install -e . # the dot specifies the current repo