123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- """
- Django settings for abs project.
- Generated by 'django-admin startproject' using Django 2.0.4.
- For more information on this file, see
- https://docs.djangoproject.com/en/2.0/topics/settings/
- For the full list of settings and their values, see
- https://docs.djangoproject.com/en/2.0/ref/settings/
- """
- import os
- import platform
- VERSION = '2.0.17'
- # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
- BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
- # Quick-start development settings - unsuitable for production
- # See https://docs.djangoproject.com/en/2.0/howto/deployment/checklist/
- # SECURITY WARNING: keep the secret key used in production secret!
- SECRET_KEY = 'm$*&&u*9+-$g^b9lj0)**1$0$wfh1wk$ye^4p+s)cera)g3fml'
- # 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',
- 'apps.account',
- 'apps.ticket',
- 'apps.workflow',
- ]
- ROOT_URLCONF = 'loonflow.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',
- 'loonflow.contexts.global_variables',
- ],
- 'libraries':{
- 'loonflow_filter': 'apps.manage.templatetags.loonflow_filter',
- }
- },
- },
- ]
- WSGI_APPLICATION = 'loonflow.wsgi.application'
- 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',
- },
- ]
- LANGUAGE_CODE = 'zh-hans'
- TIME_ZONE = 'Asia/Shanghai'
- USE_I18N = True
- USE_L10N = False
- USE_TZ = False
- DATETIME_FORMAT = 'Y-m-d H:i:s'
- TIME_FORMAT = 'H:i:s'
- LOGIN_URL = '/account/login/'
- AUTH_USER_MODEL = 'account.LoonUser'
- STATIC_URL = '/static/'
- FIXTURE_DIRS = ['fixtures/']
- STATIC_FILES_VERSION = '1.0'
- LOGIN_URL = '/manage/login'
- APPEND_SLASH = False # disable urls.W002 warning
- if platform.system() == 'Windows':
- HOMEPATH = os.environ['HOMEPATH']
- else:
- HOMEPATH = os.environ['HOME']
- JWT_SALT = 'aUApFqfQjyYVAPo8'
- DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
|