Clean up config
This commit is contained in:
parent
39a46fe9e9
commit
fd5927c31a
4 changed files with 44 additions and 14 deletions
|
@ -1,8 +1,6 @@
|
||||||
"""
|
"""
|
||||||
Django settings for CCDB
|
Django settings for CCDB
|
||||||
"""
|
"""
|
||||||
from __future__ import absolute_import, unicode_literals
|
|
||||||
|
|
||||||
from django.utils.translation import ugettext_lazy as _
|
from django.utils.translation import ugettext_lazy as _
|
||||||
|
|
||||||
import environ
|
import environ
|
||||||
|
@ -31,14 +29,14 @@ THIRD_PARTY_APPS = (
|
||||||
'crispy_forms', # Form layouts
|
'crispy_forms', # Form layouts
|
||||||
'allauth', # registration
|
'allauth', # registration
|
||||||
'allauth.account', # registration
|
'allauth.account', # registration
|
||||||
'bootstrap3', # bootstrappin'
|
'bootstrap3', # bootstrappin'
|
||||||
'django_tables2', # data grids
|
'django_tables2', # data grids
|
||||||
)
|
)
|
||||||
|
|
||||||
# Apps specific for this project go here.
|
# Apps specific for this project go here.
|
||||||
LOCAL_APPS = (
|
LOCAL_APPS = (
|
||||||
'ccdb.utils',
|
'ccdb.utils',
|
||||||
'ccdb.users', # custom users app
|
'ccdb.users',
|
||||||
'ccdb.projects',
|
'ccdb.projects',
|
||||||
'ccdb.misc',
|
'ccdb.misc',
|
||||||
'ccdb.locations',
|
'ccdb.locations',
|
||||||
|
@ -238,4 +236,19 @@ AUTOSLUG_SLUGIFY_FUNCTION = 'slugify.slugify'
|
||||||
ADMIN_URL = r'^admin/'
|
ADMIN_URL = r'^admin/'
|
||||||
GRAPPELLI_ADMIN_TITLE = 'CCDB'
|
GRAPPELLI_ADMIN_TITLE = 'CCDB'
|
||||||
|
|
||||||
# Your common stuff: Below this line define 3rd party library settings
|
|
||||||
|
MANIFEST_URL = env('MANIFEST_URL', default=None)
|
||||||
|
|
||||||
|
|
||||||
|
REST_FRAMEWORK = {
|
||||||
|
'DEFAULT_PERMISSION_CLASSES': [
|
||||||
|
'rest_framework.permissions.IsAuthenticated',
|
||||||
|
],
|
||||||
|
'DEFAULT_AUTHENTICATION_CLASSES': [
|
||||||
|
'rest_framework.authentication.TokenAuthentication',
|
||||||
|
'rest_framework.authentication.SessionAuthentication',
|
||||||
|
],
|
||||||
|
'DEFAULT_VERSIONING_CLASS': 'rest_framework.versioning.NamespaceVersioning',
|
||||||
|
'DEFAULT_PAGINATION_CLASS': 'hibernators.api.pagination.CustomPageNumberPagination',
|
||||||
|
'PAGE_SIZE': 100,
|
||||||
|
}
|
||||||
|
|
|
@ -6,8 +6,17 @@ Local settings
|
||||||
- Add Django Debug Toolbar
|
- Add Django Debug Toolbar
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
import warnings
|
||||||
|
|
||||||
from .base import * # noqa
|
from .base import * # noqa
|
||||||
|
|
||||||
|
|
||||||
|
with warnings.catch_warnings(record=True) as warning:
|
||||||
|
environ.Env.read_env('.env')
|
||||||
|
for w in warning:
|
||||||
|
print(w.message)
|
||||||
|
|
||||||
|
|
||||||
# DEBUG
|
# DEBUG
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
DEBUG = env.bool('DJANGO_DEBUG', default=True)
|
DEBUG = env.bool('DJANGO_DEBUG', default=True)
|
||||||
|
@ -45,4 +54,9 @@ DEBUG_TOOLBAR_CONFIG = {
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
|
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
|
||||||
|
|
||||||
# Your local stuff: Below this line define 3rd party library settings
|
|
||||||
|
DJOSER = {
|
||||||
|
'SITE_NAME': 'CCDB (test)',
|
||||||
|
'DOMAIN': 'localhost:4200',
|
||||||
|
'PASSWORD_RESET_CONFIRM_URL': 'password-reset?uid={uid}&token={token}',
|
||||||
|
}
|
||||||
|
|
|
@ -5,14 +5,13 @@ Production Configurations
|
||||||
- Use mailgun to send emails
|
- Use mailgun to send emails
|
||||||
|
|
||||||
'''
|
'''
|
||||||
from __future__ import absolute_import, unicode_literals
|
|
||||||
|
|
||||||
from boto.s3.connection import OrdinaryCallingFormat
|
from boto.s3.connection import OrdinaryCallingFormat
|
||||||
from django.utils import six
|
from django.utils import six
|
||||||
|
|
||||||
|
|
||||||
from .base import * # noqa
|
from .base import * # noqa
|
||||||
|
|
||||||
|
|
||||||
# SECRET CONFIGURATION
|
# SECRET CONFIGURATION
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# See: https://docs.djangoproject.com/en/dev/ref/settings/#secret-key
|
# See: https://docs.djangoproject.com/en/dev/ref/settings/#secret-key
|
||||||
|
@ -169,4 +168,11 @@ LOGGING = {
|
||||||
# Custom Admin URL, use {% url 'admin:index' %}
|
# Custom Admin URL, use {% url 'admin:index' %}
|
||||||
ADMIN_URL = env('DJANGO_ADMIN_URL')
|
ADMIN_URL = env('DJANGO_ADMIN_URL')
|
||||||
|
|
||||||
# Your production stuff: Below this line define 3rd party library settings
|
CORS_ORIGIN_ALLOW_ALL = False
|
||||||
|
CORS_ORIGIN_WHITELIST = env.tuple('CORS_ORIGIN_WHITELIST', None)
|
||||||
|
|
||||||
|
DJOSER = {
|
||||||
|
'SITE_NAME': 'CCDB',
|
||||||
|
'DOMAIN': 'https://ccdb.info',
|
||||||
|
'PASSWORD_RESET_CONFIRM_URL': 'https://ccdb.info/password-reset?uid={uid}&token={token}',
|
||||||
|
}
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
from __future__ import unicode_literals
|
|
||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.conf.urls import include, url
|
from django.conf.urls import include, url
|
||||||
from django.conf.urls.static import static
|
from django.conf.urls.static import static
|
||||||
|
@ -13,7 +10,7 @@ urlpatterns = [
|
||||||
url(r'^about/$', TemplateView.as_view(template_name='pages/about.html'), name="about"),
|
url(r'^about/$', TemplateView.as_view(template_name='pages/about.html'), name="about"),
|
||||||
|
|
||||||
# Django Admin, use {% url 'admin:index' %}
|
# Django Admin, use {% url 'admin:index' %}
|
||||||
url(r'^grappelli/', include('grappelli.urls')), # grappelli URLS
|
url(r'^grappelli/', include('grappelli.urls')),
|
||||||
url(settings.ADMIN_URL, include(admin.site.urls)),
|
url(settings.ADMIN_URL, include(admin.site.urls)),
|
||||||
|
|
||||||
# User management
|
# User management
|
||||||
|
|
Loading…
Add table
Reference in a new issue