Metadata-Version: 2.0
Name: dj-core
Version: 0.0.2
Summary: A self-contained and extensible Django environment
Home-page: https://github.com/ionata/dj-core
Author: Ionata Digital
Author-email: webmaster@ionata.com.au
License: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: django (>=1.8.0)
Requires-Dist: django-environ (~=0.4.3)

dj-core
=======

A self-contained and extensible django environment.

The default configuration makes use of the following optional packages:

- django-anymail[mailgun]
- django-debug-toolbar
- django-debug-toolbar-line-profiler
- django-minimal-user
- django-storages

The default configuration also configures the following, but does not require them:

- django-extensions
- django-cors-headers
- celery[redis]


Disabling optional packages:
----------------------------

django-anymail
~~~~~~~~~~~~~~
set the environment variable `DJCORE_EMAIL_BACKEND` to your backend of choice

django-debug-toolbar[-line-profiler]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
set the environment variable `DJCORE_USE_DJDT` to `0` or `False`

django-minimal-user
~~~~~~~~~~~~~~~~~~~
set the environment variable `DJCORE_AUTH_USER_MODEL` to your model of choice

django-storages
~~~~~~~~~~~~~~~
| set the environment variable `DJCORE_DEFAULT_FILE_STORAGE` to your engine of choice
set the environment variable `DJCORE_STATICFILES_STORAGE` to your engine of choice


