hotpocket/services/backend/ops/metal/settings/testing.py
Tomek Wójcik b4338e2769
Some checks failed
CI / Checks (push) Failing after 13m2s
Release v1.0.0
2025-08-20 21:00:50 +02:00

15 lines
319 B
Python

# -*- coding: utf-8 -*-
# type: ignore
# flake8: noqa
from __future__ import annotations
from hotpocket_backend.settings.webapp import *
DEBUG = False
TESTING = True
ROOT_URLCONF = 'hotpocket_backend.urls.testing'
CELERY_BROKER_URL = 'amqp://guest@rabbitmq.testing.hotpocket/'
CELERY_RESULT_BACKEND = 'disabled://'