Jeremy Morrell 8396b5544c Update README.rst
2018-10-27 14:04:38 -07:00
2017-12-12 15:41:06 +00:00
2017-12-11 07:39:15 -05:00
2017-12-12 16:03:05 +00:00
2017-12-12 15:30:35 +00:00
2017-12-11 06:17:16 -05:00
2017-12-12 14:49:02 +00:00
2018-03-01 15:09:16 -05:00
2018-03-01 15:09:16 -05:00
2018-10-27 14:04:38 -07:00
2018-03-01 15:10:26 -05:00

Django-Heroku (Python Library)
==============================

.. image:: https://travis-ci.org/heroku/django-heroku.svg?branch=master
    :target: https://travis-ci.org/heroku/django-heroku

This is a Django library for Heroku applications that ensures a seamless deployment and development experience.

This library provides:

-  Settings configuration (Static files / WhiteNoise).
-  Logging configuration.
-  Test runner (important for `Heroku CI <https://www.heroku.com/continuous-integration>`_).

--------------

Django 2.0 is targeted, but older versions of Django should be compatible. Only Python 3 is supported.

Usage of Django-Heroku
----------------------

In ``settings.py``, at the very bottom::

    …
    # Configure Django App for Heroku.
    import django_heroku
    django_heroku.settings(locals())

This will automatically configure ``DATABASE_URL``, ``ALLOWED_HOSTS``, WhiteNoise (for static assets), Logging, and Heroku CI for your application.

**Bonus points!** If you set the ``SECRET_KEY`` environment variable, it will automatically be used in your Django settings, too!

Disabling Functionality
///////////////////////

``settings()`` also accepts keyword arguments that can be passed ``False`` as a value, which will disable automatic configuration for their specific areas of responsibility:

- ``databases``
- ``test_runner``
- ``staticfiles``
- ``allowed_hosts``
- ``logging``
- ``secret_key``

-----------------------

You can also just use this library to provide a test runner for your Django application, for use on Heroku CI::

    import django_heroku
    TEST_RUNNER = 'django_heroku.HerokuDiscoverRunner'
S
Description
No description provided
Readme BSD-3-Clause 82 KiB
Languages
Python 99.4%
Makefile 0.3%
Procfile 0.3%