15 lines
319 B
Python
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://'
|