kali.py 861 B

12345678910111213141516171819202122232425262728293031
  1. """Kali.org specific settings"""
  2. from .defaults import INSTALLED_APPS
  3. from .db_postgresql import DATABASES # noqa
  4. INSTALLED_APPS += (
  5. # Extract common files from the source package
  6. 'distro_tracker.extract_source_files',
  7. # Derivative application
  8. 'distro_tracker.derivative',
  9. # Captcha support
  10. 'captcha',
  11. )
  12. # Official service name
  13. DISTRO_TRACKER_FQDN = "pkg.kali.org"
  14. DISTRO_TRACKER_VENDOR_NAME = "Kali Linux"
  15. DISTRO_TRACKER_VENDOR_URL = "http://www.kali.org"
  16. # Captcha support
  17. DJANGO_EMAIL_ACCOUNTS_USE_CAPTCHA = True
  18. #: A module implementing vendor-specific hooks for use by Distro Tracker.
  19. #: For more information see :py:mod:`distro_tracker.vendor`.
  20. DISTRO_TRACKER_VENDOR_RULES = 'distro_tracker.vendor.kali.rules'
  21. #: A list of the repositories where new versions are uploaded
  22. DISTRO_TRACKER_DEVEL_REPOSITORIES = ['kali-dev']