Replace weird custom variable by system variables
This commit is contained in:
parent
97c4e351c6
commit
384c85e1f3
1 changed files with 8 additions and 2 deletions
|
@ -14,9 +14,15 @@ DB_NAME = "postgresql_database"
|
||||||
DB_USER = "postgresql_username"
|
DB_USER = "postgresql_username"
|
||||||
DB_PASS = "postgresql_password"
|
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)
|
# S3 Bucket Configuration (add options as documented at https://django-storages.readthedocs.io/en/latest/backends/amazon-S3.html)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue