diff --git a/djing/settings.py b/djing/settings.py index 9e5232d..1e841d5 100644 --- a/djing/settings.py +++ b/djing/settings.py @@ -12,7 +12,7 @@ from django.core.urlresolvers import reverse_lazy SECRET_KEY = '$xvppe_5&iu4fgnt2h@eie6+w*n&m=60e7k_6hb5r4rgnfndz1' # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = False +DEBUG = True ALLOWED_HOSTS = ['*'] @@ -79,7 +79,7 @@ DATABASES = { #'ENGINE': 'django.db.backends.sqlite3', #'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), 'ENGINE': 'django.db.backends.mysql', - 'NAME': 'djingdb', + 'NAME': 'jungagent', 'USER': 'root', 'PASSWORD': 'ps', 'HOST': 'localhost' diff --git a/djing/settings_example.py b/djing/settings_example.py new file mode 100644 index 0000000..3745bb3 --- /dev/null +++ b/djing/settings_example.py @@ -0,0 +1,143 @@ +# -*- coding: utf-8 -* +import os + +# Build paths inside the project like this: os.path.join(BASE_DIR, ...) +BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +from django.core.urlresolvers import reverse_lazy + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = '$xvppe_5&iu4fgnt2h@eie6+w*n&m=60e7k_6hb5r4rgnfndz1' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = ['*'] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'accounts_app', + 'photo_app', + 'privatemessage', + 'abonapp', + 'tariff_app', + 'ip_pool', + 'searchapp', + 'devapp', + 'mapapp', + 'statistics' +] + +MIDDLEWARE_CLASSES = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.auth.middleware.SessionAuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'djing.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [os.path.join(BASE_DIR, 'templates')], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + 'mydefs.context_processor_client_ipaddress' + ], + }, + }, +] + +WSGI_APPLICATION = 'djing.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/1.9/ref/settings/#databases + +DATABASES = { + 'default': { + #'ENGINE': 'django.db.backends.sqlite3', + #'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + 'ENGINE': 'django.db.backends.mysql', + 'NAME': 'djingdb', + 'USER': 'USER', # You can change the user name + 'PASSWORD': 'PASSWORD', # You can change the password + 'HOST': 'localhost' + } +} + + +# Password validation +# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/1.9/topics/i18n/ + +LANGUAGE_CODE = 'ru-RU' + +TIME_ZONE = 'Europe/Simferopol' + +USE_I18N = True + +USE_L10N = False + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/1.9/howto/static-files/ + +STATIC_URL = '/static/' +if DEBUG: + STATICFILES_DIRS = (os.path.join(BASE_DIR, "static"),) + + +# Пример вывода: 16 сентября 2012 +DATE_FORMAT = 'd E Y' + + +MEDIA_ROOT = os.path.join(BASE_DIR, 'media') +MEDIA_URL = '/media/' + +DEFAULT_PICTURE = '/static/images/default-avatar.png' +AUTH_USER_MODEL = 'accounts_app.UserProfile' + +LOGIN_URL = reverse_lazy('login_link') +LOGIN_REDIRECT_URL = reverse_lazy('profile') +LOGOUT_URL = reverse_lazy('logout_link')