diff --git a/roles/tagger/templates/fedoratagger.cfg.j2 b/roles/tagger/templates/fedoratagger.cfg.j2 index 27040034bc..eba853f6ea 100644 --- a/roles/tagger/templates/fedoratagger.cfg.j2 +++ b/roles/tagger/templates/fedoratagger.cfg.j2 @@ -20,3 +20,11 @@ RES_PREFIX = '/tagger/_res/' ### Unhappy mako MAKO_OUTPUT_ENCODING='utf-8' + +{% if env == "staging" %} +FEDMENU_URL = 'https://apps.stg.fedoraproject.org/fedmenu/js/fedmenu.js' +FEDMENU_DATA_URL = 'https://apps.stg.fedoraproject.org/js/data.js' +{% else %} +FEDMENU_URL = 'https://apps.fedoraproject.org/fedmenu/js/fedmenu.js' +FEDMENU_DATA_URL = 'https://apps.fedoraproject.org/js/data.js' +{% endif %}