5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-05 19:55:46 +00:00
panel/config/initializers/hosts.rb

11 lines
203 B
Ruby
Raw Normal View History

2019-09-06 23:40:33 +00:00
# frozen_string_literal: true
Rails.application.configure do
next Rails.env.test?
2019-09-06 23:40:33 +00:00
domain = ENV.fetch('SUTTY', 'sutty.nl')
2019-09-07 01:00:23 +00:00
config.hosts << "panel.#{domain}"
2019-09-06 23:40:33 +00:00
config.hosts << "api.#{domain}"
end