Оживил админку и добавил конфиги для CI/CD
Some checks failed
Deploy MES Core / deploy (push) Has been cancelled

This commit is contained in:
2026-03-27 18:38:30 +03:00
parent 70f4f5d761
commit cd57d20e88
6 changed files with 103 additions and 8 deletions

View File

@@ -11,6 +11,12 @@ https://docs.djangoproject.com/en/6.0/ref/settings/
"""
from pathlib import Path
import environ
env = environ.Env()
environ.Env.read_env() # Читаем файл .env
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
@@ -37,6 +43,7 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'shiftflow', # Вот это допиши обязательно!
]
MIDDLEWARE = [
@@ -73,10 +80,7 @@ WSGI_APPLICATION = 'core.wsgi.application'
# https://docs.djangoproject.com/en/6.0/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
'default': env.db('DATABASE_URL', default='sqlite:///db.sqlite3')
}
@@ -102,9 +106,9 @@ AUTH_PASSWORD_VALIDATORS = [
# Internationalization
# https://docs.djangoproject.com/en/6.0/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
# Язык и время
LANGUAGE_CODE = 'ru-ru'
TIME_ZONE = 'Europe/Moscow'
USE_I18N = True