mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
405 B
18 lines
405 B
#!/usr/bin/env ruby
|
|
|
|
# This requires the default gemset so Sidekiq Pro
|
|
# and Sidekiq Enterprise can load any code extensions.
|
|
Bundler.require(:default, :tui)
|
|
|
|
require_relative "../lib/sidekiq/tui"
|
|
|
|
# Run any load hooks registered during Bundler.require
|
|
Sidekiq.loader.run_load_hooks(:tui)
|
|
|
|
tt = Sidekiq::TUI.new(Sidekiq.default_configuration)
|
|
|
|
RatatuiRuby.run do |tui|
|
|
tt.prepare(tui)
|
|
tt.run_loop
|
|
end
|