settings.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. """
  2. Django settings for upload project.
  3. Generated by 'django-admin startproject' using Django 4.0.2.
  4. For more information on this file, see
  5. https://docs.djangoproject.com/en/4.0/topics/settings/
  6. For the full list of settings and their values, see
  7. https://docs.djangoproject.com/en/4.0/ref/settings/
  8. """
  9. from pathlib import Path
  10. # Build paths inside the project like this: BASE_DIR / 'subdir'.
  11. BASE_DIR = Path(__file__).resolve().parent.parent
  12. # Quick-start development settings - unsuitable for production
  13. # See https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/
  14. # SECURITY WARNING: keep the secret key used in production secret!
  15. SECRET_KEY = 'django-insecure-_(06esz9s*_ln&*a$vniors%+wo=9r8qn0-1m^)yzz@mgg&)!-'
  16. # SECURITY WARNING: don't run with debug turned on in production!
  17. DEBUG = True
  18. ALLOWED_HOSTS = ['51.158.120.121']
  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. 'rest_framework',
  28. 'corsheaders',
  29. 'main.apps.MainConfig'
  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. 'corsheaders.middleware.CorsMiddleware',
  40. ]
  41. ROOT_URLCONF = 'upload.urls'
  42. CELERY_BROKER_URL = 'amqp://localhost'
  43. CORS_ORIGIN_ALLOW_ALL = True
  44. REST_FRAMEWORK = {
  45. # 'DEFAULT_AUTHENTICATION_CLASSES': [
  46. # 'rest_framework.authentication.TokenAuthentication',
  47. # ],
  48. 'DEFAULT_SCHEMA_CLASS': 'rest_framework.schemas.coreapi.AutoSchema',
  49. 'DATETIME_FORMAT': "%Y-%m-%dT%H:%M:%SZ",
  50. }
  51. TEMPLATES = [
  52. {
  53. 'BACKEND': 'django.template.backends.django.DjangoTemplates',
  54. 'DIRS': [],
  55. 'APP_DIRS': True,
  56. 'OPTIONS': {
  57. 'context_processors': [
  58. 'django.template.context_processors.debug',
  59. 'django.template.context_processors.request',
  60. 'django.contrib.auth.context_processors.auth',
  61. 'django.contrib.messages.context_processors.messages',
  62. ],
  63. },
  64. },
  65. ]
  66. WSGI_APPLICATION = 'upload.wsgi.application'
  67. # Database
  68. # https://docs.djangoproject.com/en/4.0/ref/settings/#databases
  69. DATABASES = {
  70. 'default': {
  71. 'ENGINE': 'django.db.backends.postgresql',
  72. 'NAME': 'runsstore',
  73. 'USER': 'jamal',
  74. 'PASSWORD': 'w.monk21!',
  75. 'HOST': 'localhost',
  76. 'PORT': '5432',
  77. }
  78. }
  79. # Password validation
  80. # https://docs.djangoproject.com/en/4.0/ref/settings/#auth-password-validators
  81. AUTH_PASSWORD_VALIDATORS = [
  82. {
  83. 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
  84. },
  85. {
  86. 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
  87. },
  88. {
  89. 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
  90. },
  91. {
  92. 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
  93. },
  94. ]
  95. # Internationalization
  96. # https://docs.djangoproject.com/en/4.0/topics/i18n/
  97. LANGUAGE_CODE = 'en-us'
  98. TIME_ZONE = 'UTC'
  99. USE_I18N = True
  100. USE_TZ = True
  101. # Static files (CSS, JavaScript, Images)
  102. # https://docs.djangoproject.com/en/4.0/howto/static-files/
  103. STATIC_URL = 'static/'
  104. # Default primary key field type
  105. # https://docs.djangoproject.com/en/4.0/ref/settings/#default-auto-field
  106. DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'