mirror of
https://github.com/kennethreitz/django-heroku.git
synced 2026-06-05 23:10:16 +00:00
Merge branch 'master' of github.com:heroku/django-heroku
This commit is contained in:
+20
-1
@@ -27,4 +27,23 @@ This will automatically configure ``DATABASE_URL``, ``ALLOWED_HOSTS``, WhiteNois
|
||||
|
||||
**Bonus points!** If you set the ``SECRET_KEY`` environment variable, it will automatically be used in your Django settings, too!
|
||||
|
||||
✨🍰✨
|
||||
Disabling Functionality
|
||||
///////////////////////
|
||||
|
||||
``configure()`` 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'
|
||||
|
||||
✨🍰✨
|
||||
|
||||
Reference in New Issue
Block a user