mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-01-09 08:30:18 +00:00
6d532be635
We explicitely set the MySQL connection port, even if it is the default one. I don't think this solves anything, but it's a good idea to set the port explicitely, generally speaking.
27 lines
562 B
Plaintext
27 lines
562 B
Plaintext
from .settings import *
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
'NAME': '${XQUEUE_MYSQL_DATABASE}',
|
|
'USER': '${XQUEUE_MYSQL_USERNAME}',
|
|
'PASSWORD': '${XQUEUE_MYSQL_PASSWORD}',
|
|
'HOST': 'mysql',
|
|
'PORT': '3306',
|
|
}
|
|
}
|
|
|
|
LOGGING = get_logger_config(
|
|
log_dir="/openedx/data/",
|
|
logging_env="universal",
|
|
dev_env=True,
|
|
)
|
|
|
|
RABBIT_HOST = 'rabbitmq'
|
|
RABBIT_PORT = 5672
|
|
SECRET_KEY = '${XQUEUE_SECRET_KEY}'
|
|
|
|
XQUEUE_USERS = {
|
|
'${XQUEUE_AUTH_USERNAME}': '${XQUEUE_AUTH_PASSWORD}'
|
|
}
|