Sha256: f053c248e255eda9593317385d1d76697a4857691fb988ff7aeeba468d73cad4
Contents?: true
Size: 1.76 KB
Versions: 4
Compression:
Stored size: 1.76 KB
Contents
#!/usr/bin/env ruby require 'rbbt-util' require 'rbbt/util/simpleopt' #options = SOPT.get "-e--environment*:-p--port*:-s--server*:-f--finder:-R--Rserve_session*:-ho--host*:--views*" $0 = "rbbt #{$previous_commands*""} #{ File.basename(__FILE__) }" if $previous_commands options = SOPT.setup <<EOF Description $ rbbt command command [options] <filename.tsv|-> Use - to read from STDIN -h--help Print this help -e--environment* Execution environment: production or development -ho--host* Host name -p--port* TCP port -s--server* Server type: thin, webrick, unicorn, etc -f--finder Start server with finder functionality -R--Rserve_session* Rserve session to use, otherwise start new one --views* Directory with view templates EOF if options[:help] if defined? rbbt_usage rbbt_usage else puts SOPT.usage end exit 0 end options[:Port] ||= options[:port] options[:Host] ||= "0.0.0.0" options[:Bind] ||= "0.0.0.0" app = ARGV.shift ENV["RServe-session"] = options[:RServe_session] || app app_dir = Rbbt.etc.app_dir.exists? ? Path.setup(Rbbt.etc.app_dir.read.strip) : Rbbt.apps.find app_dir = app_dir[app] server = options[:server] || 'puma' Misc.in_dir(app_dir) do require 'rack' ENV["RBBT_FINDER"] = "true" if options.include?(:finder) ENV["RACK_ENV"] = options[:environment] if options.include?(:environment) ENV["RBBT_VIEWS_DIR"] = options[:views] if options.include?(:views) config_ru_file = File.exists?('./config.ru') ? './config.ru' : Rbbt.share['config.ru'].find if server == 'unicorn' `unicorn -c #{ Rbbt.share['unicorn.rb'].find } '#{config_ru_file}' -p #{options[:port] || "2887"}` else options[:config] = config_ru_file Rack::Server.start(options) end end #!/usr/bin/env ruby require 'rbbt-util' require 'rbbt/util/simpleopt'
Version data entries
4 entries across 4 versions & 1 rubygems