mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-13 14:43:03 +00:00
bda9e042f9
'edxapp' is an old reference to the vagrant image and it does not make much sense.
10 lines
261 B
Python
10 lines
261 B
Python
from .production_common import *
|
|
|
|
ALLOWED_HOSTS = [
|
|
ENV_TOKENS.get('CMS_BASE'),
|
|
]
|
|
|
|
DEFAULT_FROM_EMAIL = 'registration@' + ENV_TOKENS['LMS_BASE']
|
|
DEFAULT_FEEDBACK_EMAIL = 'feedback@' + ENV_TOKENS['LMS_BASE']
|
|
SERVER_EMAIL = 'devops@' + ENV_TOKENS['LMS_BASE']
|