Skip to content
Snippets Groups Projects
Select Git revision
  • 28c650112836c2924a5e3bdd306a5a4149cdeac7
  • main default protected
  • renovate/jsonschema-4.x
  • renovate/djangorestframework-3.x
  • renovate/django-5.x
  • renovate/django-bootstrap5-25.x
  • renovate/django-debug-toolbar-6.x
  • koma/feature/preference-polling-form
8 results

settings_ci.py

  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    settings_ci.py 636 B
    # noinspection PyUnresolvedReferences
    from AKPlanning.settings import *
    
    DEBUG = False
    SECRET_KEY = '+7#&=$grg7^x62m#3cuv)k$)tqx!xkj_o&y9sm)@@sgj7_7-!+'
    
    SESSION_COOKIE_SECURE = True
    CSRF_COOKIE_SECURE = True
    
    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.mysql',
            'HOST': 'mysql',
            'NAME': 'test',
            'USER': 'django',
            'PASSWORD': 'mysql',
            'OPTIONS': {
                'init_command': "SET sql_mode='STRICT_TRANS_TABLES'",
            },
            'TEST': {
                'NAME': 'tests',
                'CHARSET': "utf8mb4",
                'COLLATION': 'utf8mb4_unicode_ci',
            },
        }
    }