updated docs, updated gitignore

This commit is contained in:
Faris Chebib 2015-09-10 11:04:16 -06:00
parent 2dd7f589eb
commit 814aa64e77
2 changed files with 16 additions and 0 deletions

3
.gitignore vendored
View File

@ -1,3 +1,6 @@
*.egg-info
dist/
docs/_build
__pycache__/
*.swp

View File

@ -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
$ <activate your projects virtual environment>
(environment) $ pip install -e . # the dot specifies the current repo