Replace weird custom variable by system variables

This commit is contained in:
Kumi 2021-05-27 06:31:57 +02:00
parent 97c4e351c6
commit 384c85e1f3

View file

@ -14,9 +14,15 @@ DB_NAME = "postgresql_database"
DB_USER = "postgresql_username"
DB_PASS = "postgresql_password"
# Email address of system administrator
# Email addresses of system administrators and managers
ADMIN_EMAIL = "recipient@example.com"
ADMINS = [
('Demo Admin', 'admin@example.com'),
]
MANAGERS = ADMINS + [
('Demo Manager', 'manager@example.com'),
]
# S3 Bucket Configuration (add options as documented at https://django-storages.readthedocs.io/en/latest/backends/amazon-S3.html)