freshmaker: add MBS urls in app config

This commit is contained in:
Qixiang Wan 2018-02-11 16:55:41 +08:00
parent e5a9e25aa2
commit a4096ccd0d

View file

@ -172,6 +172,7 @@ class ProdConfiguration(BaseConfiguration):
KOJI_PROFILE = 'freshmaker_stg'
MBS_BASE_URL = "https://mbs.stg.fedoraproject.org"
MBS_AUTH_TOKEN = "{{ freshmaker_stg_mbs_auth_token }}"
PDC_URL = 'https://pdc.stg.fedoraproject.org/rest_api/v1'
@ -194,6 +195,7 @@ class ProdConfiguration(BaseConfiguration):
KOJI_PROFILE = "freshmaker_production"
MBS_BASE_URL = "https://mbs.fedoraproject.org"
MBS_AUTH_TOKEN = "{{ freshmaker_prod_mbs_auth_token }}"
PDC_URL = 'https://pdc.fedoraproject.org/rest_api/v1'