Sha256: 21a793b4f013cbeaaeaea4c8d0e3bf4a59a42bbaac225f9cfb45050958ea81fd
Contents?: true
Size: 1.28 KB
Versions: 16
Compression:
Stored size: 1.28 KB
Contents
# frozen_string_literal: true # Released under the MIT License. # Copyright, 2019-2024, by Samuel Williams. require_relative 'paths' require_relative '../version' require 'samovar' require 'async/service/controller' module Falcon module Command # Implements the `falcon host` command. Designed for *deployment*. # # Manages a {Controller::Host} instance which is responsible for running applications in a production environment. class Host < Samovar::Command self.description = "Host the specified applications." # One or more paths to the configuration files. # @name paths # @attribute [Array(String)] many :paths, "Service configuration paths.", default: ["falcon.rb"] include Paths # The container class to use. def container_class Async::Container.best_container_class end # Prepare the environment and run the controller. def call Console.logger.info(self) do |buffer| buffer.puts "Falcon Host v#{VERSION} taking flight!" buffer.puts "- Configuration: #{@paths.join(', ')}" buffer.puts "- To terminate: Ctrl-C or kill #{Process.pid}" buffer.puts "- To reload: kill -HUP #{Process.pid}" end Async::Service::Controller.run(self.configuration, container_class: self.container_class) end end end end
Version data entries
16 entries across 16 versions & 1 rubygems