Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.5 KiB

  1. Thanks for downloading mumble-django.
  2. To install mumble-django, extract it to wherever you would like it to
  3. reside, and then run:
  4. python manage.py syncdb
  5. Under most circumstances, that should be all you need to do. However, if
  6. Murmur is not configured to connect to DBus, syncdb will give you an error
  7. message and Mumble-Django will not be able to work correctly. In this case,
  8. have a look at the wiki at
  9. <http://bitbucket.org/Svedrin/mumble-django/wiki/Connecting_Murmur_to_DBus>
  10. for instructions how to connect Murmur to DBus.
  11. If you need instructions on how to configure your web server in order to
  12. serve this application, you can have a look at the Wiki at
  13. <http://bitbucket.org/Svedrin/mumble-django/wiki/Webserver_Setup>. The wsgi
  14. script is also able to detect the installation paths automatically, so you
  15. shouldn't need to edit it.
  16. Django_Registration requires a valid EMail address to be set in settings.py,
  17. that can be used as a sender address for the registration emails. If you
  18. intend to use the registration feature, you may need to change the
  19. DEFAULT_FROM_EMAIL setting in settings.py.
  20. Note that there is no need to use the same Database that Murmur itself uses,
  21. as mumble-django exclusively uses DBus to connect to Murmur and does not
  22. access Murmur's database directly.
  23. Also note that this application requires Python 2.3 or later, and a
  24. functional installation of Django 1.0 or newer. You can obtain Python
  25. from http://www.python.org/ and Django from http://www.djangoproject.com/.