(copr) use staging and production URLs for fedmenu.

This commit is contained in:
Ralph Bean 2015-05-18 13:27:05 +00:00
parent 5c7d33202d
commit b69aceb930

View file

@ -42,7 +42,12 @@ INTRANET_IPS = ["127.0.0.1", "172.16.5.0/24"]
REPO_GPGCHECK = {% if devel %} 0 {% else %} 1 {% endif %}
# URLs for fedmenu resources
FEDMENU_URL = "http://threebean.org/fedmenu/"
FEDMENU_DATA_URL = "http://threebean.org/fedmenu/dev-data.js"
{% if env == 'staging' %}
# Staging URLs for fedmenu
FEDMENU_URL = "https://apps.stg.fedoraproject.org/fedmenu/"
FEDMENU_DATA_URL = "https://apps.stg.fedoraproject.org/js/data.js"
{% else %}
# Production URLs for fedmenu
FEDMENU_URL = "https://apps.fedoraproject.org/fedmenu/"
FEDMENU_DATA_URL = "https://apps.fedoraproject.org/js/data.js"
{% endif %}