DEBUG
= True
DEBUG_TOOLBAR
= True
ALLOWED_HOSTS
= *
DATABASE_URL
= <Postgres DB URL>
CORS_ORIGIN_WHITELIST
= http://localhost
(Specifies the allowed origins for handling CORS)
RESULT_SEND_TYPE
= mq
(Specifies the RabbitMQ message key)
RABBITMQ_DEFAULT_USER
= admin
RABBITMQ_DEFAULT_PASS
= <RabbitMQ password>
RABBITMQ_DEFAULT_VHOST
= debbie
(Specifies the default host of RabbitMQ)
RABBIT_BROKER_HOST
= repotool-rabbitmq
(Specifies the RabbitMQ container name)
RABBIT_BROKER_PORT
= 5672
RABBIT_QUEUE
= repos
(Specifies the name of the RabbitMQ job queue)