Sha256: 706daf4431feabb18594c5b2ebebae2f575a764503c07664dc23812859d193d0
Contents?: true
Size: 405 Bytes
Versions: 201
Compression:
Stored size: 405 Bytes
Contents
module Souls class CLI < Thor desc "server", "Run SOULs APP" method_option :all, type: :boolean, alias: "--all", default: false, desc: "Run All API & Workers" def server if options[:all] Dir.chdir(Souls.get_mother_path.to_s) do system("foreman start -f Procfile.dev") end else system("foreman start -f Procfile.dev") end end end end
Version data entries
201 entries across 201 versions & 1 rubygems