Merge remote-tracking branch 'origin/master' into feature/tasks

This commit is contained in:
Timur
2025-03-01 11:10:56 +03:00
17 changed files with 33 additions and 32 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
"""ASGI config for project_name."""
"""ASGI config for datarush."""
import os
+1 -1
View File
@@ -4,7 +4,7 @@ from celery import Celery
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
app = Celery("project_name")
app = Celery("datarush")
app.config_from_object("django.conf:settings", namespace="CELERY")
app.autodiscover_tasks()
+3 -3
View File
@@ -1,4 +1,4 @@
"""Django settings for project_name."""
"""Django settings for datarush."""
import contextlib
import logging
@@ -141,7 +141,7 @@ MINIO_STORAGE_SECRET_KEY = env("MINIO_SECRET_KEY", default=None)
MINIO_STORAGE_USE_HTTPS = env("MINIO_USE_HTTPS", default=False)
MINIO_STORAGE_MEDIA_BUCKET_NAME = env(
"MINIO_MEDIA_BUCKET_NAME", default="projectname-media"
"MINIO_MEDIA_BUCKET_NAME", default="datarush-media"
)
MINIO_STORAGE_AUTO_CREATE_MEDIA_BUCKET = True
@@ -300,7 +300,7 @@ WSGI_APPLICATION = "config.wsgi.application"
# Logging
LOGGER_NAME = "project_name"
LOGGER_NAME = "datarush"
LOGGER = logging.getLogger(LOGGER_NAME)
+4 -4
View File
@@ -1,4 +1,4 @@
"""URL configuration for project_name."""
"""URL configuration for datarush."""
from django.conf import settings
from django.contrib import admin
@@ -6,9 +6,9 @@ from django.urls import include, path
from config import handlers
admin.site.site_title = "project_name"
admin.site.site_header = "project_name"
admin.site.index_title = "project_name"
admin.site.site_title = "DataRush"
admin.site.site_header = "DataRush"
admin.site.index_title = "DataRush"
urlpatterns = [
+1 -1
View File
@@ -1,4 +1,4 @@
"""WSGI config for project_name."""
"""WSGI config for datarush."""
import os