2026-08-15 13:50:24 +07:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
|
|
from artifex.settings import * # noqa: F403
|
|
|
|
|
|
|
|
|
|
DATABASES = {"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}}
|
2026-08-15 20:56:56 +07:00
|
|
|
ALLOWED_HOSTS = ["testserver", "localhost", "127.0.0.1"]
|