Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

127 lines
3.2 KiB

  1. """
  2. Django settings for musicdata project.
  3. Generated by 'django-admin startproject' using Django 2.0.5.
  4. For more information on this file, see
  5. https://docs.djangoproject.com/en/2.0/topics/settings/
  6. For the full list of settings and their values, see
  7. https://docs.djangoproject.com/en/2.0/ref/settings/
  8. """
  9. import os
  10. # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
  11. BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
  12. # Quick-start development settings - unsuitable for production
  13. # See https://docs.djangoproject.com/en/2.0/howto/deployment/checklist/
  14. # SECURITY WARNING: keep the secret key used in production secret!
  15. SECRET_KEY = 'm(gh1&063)haj#^t+h-qh@o6#%w=ruqi_#=6yzi=#@q6#0p*gv'
  16. # SECURITY WARNING: don't run with debug turned on in production!
  17. DEBUG = True
  18. ALLOWED_HOSTS = []
  19. # Application definition
  20. INSTALLED_APPS = [
  21. 'django.contrib.admin',
  22. 'django.contrib.auth',
  23. 'django.contrib.contenttypes',
  24. 'django.contrib.sessions',
  25. 'django.contrib.messages',
  26. 'django.contrib.staticfiles',
  27. 'login.apps.LoginConfig',
  28. 'api.apps.ApiConfig',
  29. 'graphs.apps.GraphsConfig',
  30. ]
  31. MIDDLEWARE = [
  32. 'django.middleware.security.SecurityMiddleware',
  33. 'django.contrib.sessions.middleware.SessionMiddleware',
  34. 'django.middleware.common.CommonMiddleware',
  35. 'django.middleware.csrf.CsrfViewMiddleware',
  36. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  37. 'django.contrib.messages.middleware.MessageMiddleware',
  38. 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  39. ]
  40. ROOT_URLCONF = 'spotifyvis.urls'
  41. TEMPLATES = [
  42. {
  43. 'BACKEND': 'django.template.backends.django.DjangoTemplates',
  44. 'DIRS': [],
  45. 'APP_DIRS': True,
  46. 'OPTIONS': {
  47. 'context_processors': [
  48. 'django.template.context_processors.debug',
  49. 'django.template.context_processors.request',
  50. 'django.contrib.auth.context_processors.auth',
  51. 'django.contrib.messages.context_processors.messages',
  52. ],
  53. },
  54. },
  55. ]
  56. WSGI_APPLICATION = 'spotifyvis.wsgi.application'
  57. # Database
  58. # https://docs.djangoproject.com/en/2.0/ref/settings/#databases
  59. DATABASES = {
  60. 'default': {
  61. 'ENGINE': 'django.db.backends.postgresql_psycopg2',
  62. 'NAME': 'spotifyvis',
  63. 'USER': 'django',
  64. 'PASSWORD': 'django',
  65. 'HOST': 'localhost',
  66. 'PORT': '',
  67. }
  68. }
  69. # Password validation
  70. # https://docs.djangoproject.com/en/2.0/ref/settings/#auth-password-validators
  71. AUTH_PASSWORD_VALIDATORS = [
  72. {
  73. 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
  74. },
  75. {
  76. 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
  77. },
  78. {
  79. 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
  80. },
  81. {
  82. 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
  83. },
  84. ]
  85. # Internationalization
  86. # https://docs.djangoproject.com/en/2.0/topics/i18n/
  87. LANGUAGE_CODE = 'en-us'
  88. TIME_ZONE = 'America/Toronto'
  89. USE_I18N = True
  90. USE_L10N = True
  91. USE_TZ = True
  92. # Static files (CSS, JavaScript, Images)
  93. # https://docs.djangoproject.com/en/2.0/howto/static-files/
  94. STATIC_URL = '/static/'