Sha256: 157ff6a948415d18e5d5d3374cb85db34906077cd4b63df59980cffc3e821ae2
Contents?: true
Size: 1.41 KB
Versions: 2
Compression:
Stored size: 1.41 KB
Contents
# frozen_string_literal: true module Mihari module Commands module Web def self.included(thor) thor.class_eval do desc "web", "Launch the web app" method_option :port, type: :numeric, default: 9292, desc: "Hostname to listen on" method_option :host, type: :string, default: "localhost", desc: "Port to listen on" method_option :threads, type: :string, default: "0:5", desc: "min:max threads to use" method_option :verbose, type: :boolean, default: true, desc: "Report each request" method_option :worker_timeout, type: :numeric, default: 60, desc: "Worker timeout value (in seconds)" method_option :hide_config_values, type: :boolean, default: false, desc: "Whether to hide config values or not" method_option :open, type: :boolean, default: true, desc: "Whether to open the app in browser or not" def web Mihari.config.hide_config_values = options["hide_config_values"] # set rack env as production ENV["RACK_ENV"] ||= "production" Mihari::App.run!( port: options["port"], host: options["host"], threads: options["threads"], verbose: options["verbose"], worker_timeout: options["worker_timeout"], open: options["open"] ) end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mihari-5.2.2 | lib/mihari/commands/web.rb |
mihari-5.2.1 | lib/mihari/commands/web.rb |