Add the fedmenu configuration for elections

This commit is contained in:
Pierre-Yves Chibon 2015-04-29 12:36:34 +02:00
parent eae048ef57
commit f0d8559b08

View file

@ -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 %}