Skip to content

Commit

Permalink
Import Organization
Browse files Browse the repository at this point in the history
  • Loading branch information
qwerrrqw committed Nov 15, 2024
1 parent 630a057 commit 761e8e7
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions {{cookiecutter.project_slug}}/config/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,25 @@
import ssl

import sentry_sdk

{%- if cookiecutter.use_celery == 'y' %}
from sentry_sdk.integrations.celery import CeleryIntegration

{%- endif %}
from sentry_sdk.integrations.django import DjangoIntegration
from sentry_sdk.integrations.logging import LoggingIntegration
from sentry_sdk.integrations.redis import RedisIntegration

{% else %}
import ssl

{% endif -%}
from .base import env

from .base import * # noqa: F403
from .base import DATABASES
from .base import INSTALLED_APPS
from .base import REDIS_URL
from .base import env
{%- if cookiecutter.use_drf == "y" %}
from .base import SPECTACULAR_SETTINGS
{%- endif %}
from .base import * # noqa: F403

# GENERAL
# ------------------------------------------------------------------------------
# https://docs.djangoproject.com/en/dev/ref/settings/#secret-key
Expand Down

0 comments on commit 761e8e7

Please sign in to comment.