mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-25 02:06:22 +00:00
11 lines
241 B
Ruby
11 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
|