mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 17:38:07 +01:00
8 lines
292 B
Ruby
8 lines
292 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'stoplight'
|
|
|
|
Rails.application.reloader.to_prepare do
|
|
Stoplight::Light.default_data_store = Stoplight::DataStore::Redis.new(RedisConfiguration.new.connection)
|
|
Stoplight::Light.default_notifiers = [Stoplight::Notifier::Logger.new(Rails.logger)]
|
|
end
|