Commit 1ba217d2 by zubair-arbi

add enterprise API configuration

parent 15a4356f
......@@ -55,3 +55,4 @@ Florian Haas <florian@hastexo.com>
Shohei Maeda <s.maeda@gacco.co.jp>
Bill DeRusha <bill@edx.org>
Jillian Vogel <jill@opencraft.com>
Zubair Afzal <zubair.afzal@arbisoft.com>
......@@ -211,3 +211,6 @@
- Role: edxapp
- Added `XQUEUE_RABBITMQ_VHOST` to allow configuring the xqueue RabbitMQ host.
- Added `XQUEUE_RABBITMQ_PORT` and `XQUEUE_RABBITMQ_TLS` to allow configuring the RabbitMQ port, and enabling TLS respectively.
- Role: ecommerce
- Added `ECOMMERCE_ENTERPRISE_URL` for the `enterprise` API endpoint exposed by a new service `edx-enterprise` (currently hosted by `LMS`), which defaults to the existing setting `ECOMMERCE_LMS_URL_ROOT`.
......@@ -134,6 +134,7 @@ ECOMMERCE_BROKER_PORT: 5672
ECOMMERCE_BROKER_URL: 'amqp://{{ ECOMMERCE_BROKER_USERNAME }}:{{ ECOMMERCE_BROKER_PASSWORD }}@{{ ECOMMERCE_BROKER_HOST }}:{{ ECOMMERCE_BROKER_PORT }}'
ECOMMERCE_COURSE_CATALOG_URL: 'http://localhost:8008'
ECOMMERCE_ENTERPRISE_URL: '{{ ECOMMERCE_LMS_URL_ROOT }}'
ECOMMERCE_SERVICE_CONFIG:
SECRET_KEY: '{{ ECOMMERCE_SECRET_KEY }}'
......@@ -143,6 +144,7 @@ ECOMMERCE_SERVICE_CONFIG:
OSCAR_FROM_EMAIL: '{{ ECOMMERCE_OSCAR_FROM_EMAIL }}'
COURSE_CATALOG_API_URL: '{{ ECOMMERCE_COURSE_CATALOG_URL }}/api/v1/'
ENTERPRISE_API_URL: '{{ ECOMMERCE_ENTERPRISE_URL }}/api/v1/'
ECOMMERCE_URL_ROOT: '{{ ECOMMERCE_ECOMMERCE_URL_ROOT }}'
LMS_URL_ROOT: '{{ ECOMMERCE_LMS_URL_ROOT }}'
LMS_HEARTBEAT_URL: '{{ ECOMMERCE_LMS_URL_ROOT }}/heartbeat'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment