Use stg instead of dev and set the FROM_EMAIL where it needs to be

This commit is contained in:
Pierre-Yves Chibon 2015-04-02 21:33:38 +02:00
parent 890d224c18
commit 9e55b6cb44

View file

@ -26,14 +26,14 @@ SMTP_SERVER = 'localhost'
### Email used to sent emails ### Email used to sent emails
{% if env == 'staging' %} {% if env == 'staging' %}
APP_URL = 'https://dev.pagure.io/' FROM_EMAIL = 'pagure@stg.pagure.io'
{% else %} {% else %}
FROM_EMAIL = 'pagure@dev.pagure.io' FROM_EMAIL = 'pagure@pagure.io'
{% endif %} {% endif %}
### The URL at which the project is available. ### The URL at which the project is available.
{% if env == 'staging' %} {% if env == 'staging' %}
APP_URL = 'https://dev.pagure.io/' APP_URL = 'https://stg.pagure.io/'
{% else %} {% else %}
APP_URL = 'https://pagure.io/' APP_URL = 'https://pagure.io/'
{% endif %} {% endif %}