diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-08-10 21:09:01 +0530 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-08-10 21:09:01 +0530 |
commit | 1023fd08a862822d7363432b95247bb616c6f856 (patch) | |
tree | aedbc6900b5728b9cfb0deaa227783a32a722824 /hyperkitty/doc/development.rst | |
parent | 48e0b96e2c64bb44ec30e8cd039bd1db2ac20d66 (diff) | |
download | hyperkitty-1023fd08a862822d7363432b95247bb616c6f856.tar.gz hyperkitty-1023fd08a862822d7363432b95247bb616c6f856.tar.xz hyperkitty-1023fd08a862822d7363432b95247bb616c6f856.zip |
Add documentation
Diffstat (limited to 'hyperkitty/doc/development.rst')
-rw-r--r-- | hyperkitty/doc/development.rst | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/hyperkitty/doc/development.rst b/hyperkitty/doc/development.rst new file mode 100644 index 0000000..aed8c0e --- /dev/null +++ b/hyperkitty/doc/development.rst @@ -0,0 +1,27 @@ +=========== +Development +=========== + + +Contribution +======== +Hang out on IRC and ask questions on #mailman or join the mailing list mailman-developers@python.org + +Get the development version up and running: + 1. bzr branch bzr://bzr.fedorahosted.org/bzr/hyperkitty/hyperkitty + 2. cd hyperkitty + 3. python setup.py develop ( this command may require sudo privileges) + 4. Clone the stand alone hk-app, bzr branch bzr://bzr.fedorahosted.org/bzr/hyperkitty/hk-app + 5. cd hk-app + 6. python manage.py syncdb + 7. python manage.py runserver + (you may need to load data in your local machine using kittystore to get it running) + +Testing +======= + +python manage.py test hyperkitty + +All test modules reside in the ``hyperkitty/hyperkitty/tests`` directory +and this is where you should put your own tests, too. To make the django test +runner find your tests, make sure to add them to the folder's ``__init__.py``: |