6 lines
225 B
Python
6 lines
225 B
Python
from __future__ import annotations
|
|
|
|
from artifex.settings import * # noqa: F403
|
|
|
|
DATABASES = {"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}}
|
|
ALLOWED_HOSTS = ["testserver", "localhost", "127.0.0.1"]
|