Use stg instead of dev and set the FROM_EMAIL where it needs to be
This commit is contained in:
parent
890d224c18
commit
9e55b6cb44
1 changed files with 3 additions and 3 deletions
|
@ -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 %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue