11 lines
338 B
Python
11 lines
338 B
Python
"""Development settings."""
|
|
|
|
from .base import * # noqa: F401, F403
|
|
|
|
DEBUG = True
|
|
ALLOWED_HOSTS = ["localhost", "127.0.0.1", "0.0.0.0"]
|
|
|
|
# Email backend is auto-detected in base.py: Mailtrap if MAILTRAP_API_TOKEN
|
|
# is set in .env, otherwise the console backend. To force console output
|
|
# even with a token set, clear MAILTRAP_API_TOKEN.
|