Spaces:
Sleeping
Sleeping
| import os | |
| from pathlib import Path | |
| BASE_DIR = Path(__file__).resolve().parent.parent | |
| SECRET_KEY = 'django-insecure-satcap-oceans-secret-key' | |
| DEBUG = True | |
| ALLOWED_HOSTS = ['*'] | |
| INSTALLED_APPS = [ | |
| 'django.contrib.admin', | |
| 'django.contrib.auth', | |
| 'django.contrib.contenttypes', | |
| 'django.contrib.sessions', | |
| 'django.contrib.messages', | |
| 'django.contrib.staticfiles', | |
| 'rest_framework', | |
| 'corsheaders', | |
| 'api', | |
| ] | |
| MIDDLEWARE = [ | |
| 'corsheaders.middleware.CorsMiddleware', | |
| '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 = 'satcap_project.urls' | |
| TEMPLATES = [ | |
| { | |
| 'BACKEND': 'django.template.backends.django.DjangoTemplates', | |
| 'DIRS': [], | |
| '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 = 'satcap_project.wsgi.application' | |
| DATABASES = { | |
| 'default': { | |
| 'ENGINE': 'django.db.backends.sqlite3', | |
| 'NAME': BASE_DIR / 'db.sqlite3', | |
| } | |
| } | |
| AUTH_PASSWORD_VALIDATORS = [ | |
| { | |
| 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', | |
| }, | |
| { | |
| 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', | |
| }, | |
| { | |
| 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', | |
| }, | |
| { | |
| 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', | |
| }, | |
| ] | |
| LANGUAGE_CODE = 'en-us' | |
| TIME_ZONE = 'UTC' | |
| USE_I18N = True | |
| USE_TZ = True | |
| STATIC_URL = 'static/' | |
| STATIC_ROOT = os.path.join(BASE_DIR, 'static') | |
| STORAGES = { | |
| "default": { | |
| "BACKEND": "django.core.files.storage.FileSystemStorage", | |
| }, | |
| "staticfiles": { | |
| "BACKEND": "whitenoise.storage.CompressedManifestStaticFilesStorage", | |
| }, | |
| } | |
| DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' | |
| CORS_ALLOW_ALL_ORIGINS = True # For development | |
| CORS_ALLOWED_ORIGINS = [ | |
| "http://localhost:5173", | |
| "http://127.0.0.1:5173", | |
| "https://marinoatohoun.github.io", | |
| ] | |
| CSRF_TRUSTED_ORIGINS = [ | |
| "https://cosmolabhub-satcap-oceans-docker.hf.space", | |
| "http://localhost:5173", | |
| "http://127.0.0.1:5173", | |
| "https://marinoatohoun.github.io", | |
| ] | |
| MEDIA_URL = '/media/' | |
| MEDIA_ROOT = os.path.join(BASE_DIR, 'media') | |