Sha256: ce2fab0761ec4e2fce47ecbbbebb2a81ec8db172fbceb405bd1b9fe62f61d436
Contents?: true
Size: 1.59 KB
Versions: 8
Compression:
Stored size: 1.59 KB
Contents
# frozen_string_literal: true module Rails module Commands class Serve < ShopifyCli::Command prerequisite_task :ensure_env, :ensure_dev_store options do |parser, flags| parser.on('--host=HOST') do |h| flags[:host] = h.gsub('"', '') end end def call(*) project = ShopifyCli::Project.current url = options.flags[:host] || ShopifyCli::Tunnel.start(@ctx) @ctx.abort(@ctx.message('rails.serve.error.host_must_be_https')) if url.match(/^https/i).nil? project.env.update(@ctx, :host, url) ShopifyCli::Tasks::UpdateDashboardURLS.call( @ctx, url: url, callback_url: "/auth/shopify/callback", ) if project.env.shop project_url = "#{project.env.host}/login?shop=#{project.env.shop}" @ctx.puts("\n" + @ctx.message('rails.serve.open_info', project_url) + "\n") end CLI::UI::Frame.open(@ctx.message('rails.serve.running_server')) do env = ShopifyCli::Project.current.env.to_h env.delete('HOST') env['PORT'] = ShopifyCli::Tunnel::PORT.to_s env['GEM_PATH'] = Gem.gem_path(@ctx) if @ctx.windows? @ctx.system("ruby bin\\rails server", env: env) else @ctx.system('bin/rails server', env: env) end end end def self.help ShopifyCli::Context.message('rails.serve.help', ShopifyCli::TOOL_NAME) end def self.extended_help ShopifyCli::Context.message('rails.serve.extended_help', ShopifyCli::TOOL_NAME) end end end end
Version data entries
8 entries across 8 versions & 1 rubygems