mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
don't warn unless in production
This commit is contained in:
parent
380f60d17c
commit
9cecabd023
1 changed files with 1 additions and 1 deletions
|
@ -48,4 +48,4 @@ production:
|
||||||
username: <%= uri.user %>
|
username: <%= uri.user %>
|
||||||
password: <%= uri.password %>
|
password: <%= uri.password %>
|
||||||
host_names:
|
host_names:
|
||||||
- <%= ENV["DISCOURSE_HOSTNAME"] || raise("env var for DISCOURSE_HOSTNAME must be set") %> # Update this to be the domain of your production site
|
- <%= ENV["DISCOURSE_HOSTNAME"] || raise("env var for DISCOURSE_HOSTNAME must be set") if Rails.env == "production" %> # Update this to be the domain of your production site
|
||||||
|
|
Loading…
Reference in a new issue