diff --git a/roles/elections/templates/fedora-elections.cfg b/roles/elections/templates/fedora-elections.cfg index d01f146d00..449cf40a5c 100644 --- a/roles/elections/templates/fedora-elections.cfg +++ b/roles/elections/templates/fedora-elections.cfg @@ -44,3 +44,13 @@ DOGPILE_CACHE = { 'distributed_lock': True, }, } + +## URLs to fedmenu resources +{% if env == 'staging' %} +FEDMENU_URL = 'https://apps.stg.fedoraproject.org/fedmenu' +FEDMENU_DATA_URL = 'https://apps.stg.fedoraproject.org/js/data.js' +{% else %} +FEDMENU_URL = 'https://apps.fedoraproject.org/fedmenu' +FEDMENU_DATA_URL = 'https://apps.fedoraproject.org/js/data.js' +{% endif %} +