This commit is contained in:
IGNY8 VPS (Salman)
2025-12-14 02:01:53 +00:00
parent 1acecd8639
commit d161378bd9
63 changed files with 849 additions and 9565 deletions

View File

@@ -36,10 +36,7 @@ ALLOWED_HOSTS = [
]
INSTALLED_APPS = [
# Django Admin Enhancements (must be before django.contrib.admin)
'admin_interface',
'colorfield',
# Core Django apps
# Core Django apps - Custom admin with IGNY8 branding
'igny8_core.admin.apps.Igny8AdminConfig', # Custom admin config
'django.contrib.auth',
'django.contrib.contenttypes',
@@ -207,6 +204,9 @@ USE_TZ = True
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'igny8_core', 'static'),
]
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
@@ -600,9 +600,6 @@ LOGGING = {
},
}
# Admin Interface Configuration
X_FRAME_OPTIONS = 'SAMEORIGIN' # Required for django-admin-interface
# Celery Results Backend
CELERY_RESULT_BACKEND = 'django-db'
CELERY_CACHE_BACKEND = 'django-cache'