forked from mystiq/sso
30 lines
885 B
Python
30 lines
885 B
Python
"""
|
|
Django settings for dashboard project.
|
|
|
|
Generated by 'django-admin startproject' using Django 4.0.3.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/4.0/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/4.0/ref/settings/
|
|
"""
|
|
import environ
|
|
import os
|
|
|
|
env = environ.Env()
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
# A new SECRET_KEY can be generated by running the following command:
|
|
# openssl rand -hex 32
|
|
SECRET_KEY = "django-insecure-44zt@)$td7_yh(01q^hrce%h(311n!djn%%#s1b7$cvfy!pf7y"
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = True
|
|
|
|
ALLOWED_HOSTS = []
|
|
|
|
print("Finished importing local_settings.ci.py")
|