mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-23 03:57:09 +00:00
datarushpobeda
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
"""ASGI config for project_name."""
|
||||
"""ASGI config for datarush."""
|
||||
|
||||
import os
|
||||
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -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,4 +1,4 @@
|
||||
"""WSGI config for project_name."""
|
||||
"""WSGI config for datarush."""
|
||||
|
||||
import os
|
||||
|
||||
|
||||
Reference in New Issue
Block a user