Scaffold main apps

This commit is contained in:
2026-05-12 17:25:44 +03:00
parent f32e57c6dc
commit 15978661f8
11 changed files with 173 additions and 122 deletions

9
hamprint/settings/dev.py Normal file
View File

@@ -0,0 +1,9 @@
"""Development settings."""
from .base import * # noqa: F401, F403
DEBUG = True
ALLOWED_HOSTS = ["localhost", "127.0.0.1", "0.0.0.0"]
# Print emails to the console in dev so we don't burn Mailjet quota.
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"