Spaces:
Sleeping
Sleeping
| from pathlib import Path | |
| import os | |
| BASE_DIR = Path(__file__).resolve().parent.parent | |
| SECRET_KEY = 'marrygoround1234' | |
| DEBUG = True | |
| ALLOWED_HOSTS = [ | |
| '*', | |
| '.hf.space', | |
| 'localhost', | |
| '127.0.0.1' | |
| ] | |
| CSRF_TRUSTED_ORIGINS = [ | |
| 'https://*.hf.space', | |
| ] | |
| INSTALLED_APPS = [ | |
| 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', | |
| 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', | |
| 'rest_framework', | |
| 'predictor', | |
| ] | |
| MIDDLEWARE = [ | |
| 'django.middleware.security.SecurityMiddleware', | |
| 'whitenoise.middleware.WhiteNoiseMiddleware', | |
| 'django.contrib.sessions.middleware.SessionMiddleware', | |
| 'django.middleware.common.CommonMiddleware', | |
| 'django.middleware.csrf.CsrfViewMiddleware', | |
| 'django.contrib.auth.middleware.AuthenticationMiddleware', | |
| 'django.contrib.messages.middleware.MessageMiddleware', | |
| # 'django.middleware.clickjacking.XFrameOptionsMiddleware', # | |
| ] | |
| ROOT_URLCONF = 'mlserve.urls' | |
| TEMPLATES = [{ | |
| 'BACKEND': 'django.template.backends.django.DjangoTemplates', | |
| 'DIRS': [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', | |
| ], | |
| }, | |
| }] | |
| WSGI_APPLICATION = 'mlserve.wsgi.application' | |
| ASGI_APPLICATION = 'mlserve.asgi.application' | |
| DATABASES = {'default': {'ENGINE': 'django.db.backends.sqlite3', 'NAME': BASE_DIR / 'db.sqlite3'}} | |
| LANGUAGE_CODE = 'ko-kr' | |
| TIME_ZONE = 'Asia/Seoul' | |
| USE_I18N = True | |
| USE_TZ = False | |
| STATIC_URL = 'static/' | |
| STATIC_ROOT = BASE_DIR / 'staticfiles' | |
| STATICFILES_DIRS = [BASE_DIR / 'static'] if (BASE_DIR / 'static').exists() else [] | |
| DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' | |
| STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage' | |