mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 03:41:41 +00:00
12 lines
241 B
Ruby
12 lines
241 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Rails.application.configure do
|
||
|
next if ENV['RAILS_ENV'] == 'test'
|
||
|
|
||
|
domain = ENV.fetch('SUTTY', 'sutty.nl')
|
||
|
|
||
|
config.hosts << domain
|
||
|
config.hosts << "edit.#{domain}"
|
||
|
config.hosts << "api.#{domain}"
|
||
|
end
|