Passed
Pull Request — master (#19)
by Joe
01:56
created

nibble.settings.production   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 0
1
import dj_database_url
0 ignored issues
show
Coding Style introduced by
This module should have a docstring.

The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:

class SomeClass:
    def some_method(self):
        """Do x and return foo."""

If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.

Loading history...
2
3
from .base import *
0 ignored issues
show
Coding Style introduced by
The usage of wildcard imports like base should generally be avoided.
Loading history...
Unused Code introduced by
TEMPLATES was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
STATICFILES_DIRS was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
TIME_ZONE was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
ROOT_URLCONF was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
INSTALLED_APPS was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
LANGUAGE_CODE was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
USE_TZ was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
WSGI_APPLICATION was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
USE_L10N was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
USE_I18N was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
STATIC_ROOT was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
STATIC_URL was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
MIDDLEWARE_CLASSES was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
SECRET_KEY was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
BASE_DIR was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
DEBUG was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
ALLOWED_HOSTS was imported with wildcard, but is not used.
Loading history...
Unused Code introduced by
os was imported with wildcard, but is not used.
Loading history...
4
5
DEBUG = False
6
7
DATABASES['default'] = dj_database_url.config()
8
9
STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'
10