diff --git a/djangoldp_webpushnotification/djangoldp_settings.py b/djangoldp_webpushnotification/djangoldp_settings.py new file mode 100644 index 0000000..ad0f51a --- /dev/null +++ b/djangoldp_webpushnotification/djangoldp_settings.py @@ -0,0 +1,13 @@ + +"""This module is loaded by DjangoLDP core during setup.""" + +# define an extra variable (should be prefix with package name) +MYPACKAGE_VAR = 'MY_DEFAULT_VAR' + +# register an extra middleware +MIDDLEWARE = [] + +# register an extra installed app +INSTALLED_APPS = [ + 'webpush' +]