Skip to content

Commit

Permalink
Adding the package install instructions to the readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-code committed Nov 12, 2016
1 parent 9acb1fe commit 5b32023
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,33 @@ Features
* Users have a reputation and a profile.
* Support for tagging questions with django-taggit.
* Questions are categorized by latest, popular and most voted.

Installation
============
Django-QA aims at keeping things simple. To install it you have to do what you would do with most django apps.

Install with pip:
.. code-block:: bash
pip install django-qa
Add to INSTALLED_APPS in your project settings.
.. code-block:: python
INSTALLED_APPS = (
...
qa,
...
)
Add the package urls to the project:
.. code-block:: python
urlpatterns = [
...,
url(r'^', include('qa.urls')),
...
]
Run migrations:
.. code-block:: bash
python manage.py migrate
And that's it!

0 comments on commit 5b32023

Please sign in to comment.