aboutsummaryrefslogtreecommitdiffstats
path: root/docs/contributing.rst
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-27 12:29:57 -0700
committerAymeric Augustin2013-10-27 12:29:57 -0700
commitdcfa0eaa25c948f4b9e544e1bee489403014d3e7 (patch)
treef132e5a5d0cbd6d3c18de46b62567c4584cd870a /docs/contributing.rst
parent7d5593bc528cd1f350b23093b00807f15e6153a3 (diff)
parent00a2b9734f382ef8395cc85e1406c9800dcc5d0f (diff)
downloaddjango-debug-toolbar-dcfa0eaa25c948f4b9e544e1bee489403014d3e7.tar.bz2
Merge pull request #430 from aaugustin/sphinx-docs
Convert README to Sphinx docs.
Diffstat (limited to 'docs/contributing.rst')
-rw-r--r--docs/contributing.rst53
1 files changed, 53 insertions, 0 deletions
diff --git a/docs/contributing.rst b/docs/contributing.rst
new file mode 100644
index 0000000..061d9a3
--- /dev/null
+++ b/docs/contributing.rst
@@ -0,0 +1,53 @@
+Contributing
+============
+
+Code
+----
+
+The code is available `on GitHub
+<http://github.com/django-debug-toolbar/django-debug-toolbar>`_.
+
+Once you've obtained a checkout, you should create a virtualenv_ and install
+the libraries required for working on the Debug Toolbar::
+
+ $ pip install -r requirements_dev.txt
+
+.. _virtualenv: http://www.virtualenv.org/
+
+Once you've done this, you can run the test suite on all supported version of
+Django and Python::
+
+ $ tox
+
+Bug reports and feature requests
+--------------------------------
+
+You can report bugs and request features in the `bug tracker
+<http://github.com/django-debug-toolbar/django-debug-toolbar/issues>`_.
+
+Please search the existing database for duplicates before filing an issue.
+
+Patches
+-------
+
+Please submit `pull requests
+<http://github.com/django-debug-toolbar/django-debug-toolbar/pulls>`_!
+
+The Debug Toolbar includes a limited but growing test suite. If you fix a bug
+or add a feature code, please consider adding proper coverage in the test
+suite, especially if it has a chance for a regression.
+
+Translations
+------------
+
+Translation efforts are coordinated on `Transifex
+<https://www.transifex.net/projects/p/django-debug-toolbar/>`_.
+
+Help translate the Debug Toolbar in your language!
+
+
+Mailing list
+------------
+
+This project doesn't have a mailing list at this time. If you wish to discuss
+a topic, please open an issue on GitHub.