Sha256: 43a48a15edab24616f5ece48e7c96936e9595ecd6118a0ce74b427d613e5f10f
Contents?: true
Size: 1.46 KB
Versions: 3
Compression:
Stored size: 1.46 KB
Contents
# frozen_string_literal: true module PHP class Command class Serve < ShopifyCLI::SubCommand include ShopifyCLI::CommandOptions::CommandServeOptions prerequisite_task :ensure_env, :ensure_dev_store parse_host_option parse_port_option def call(*) project = ShopifyCLI::Project.current tunnel_port = port.to_s url = host || ShopifyCLI::Tunnel.start(@ctx, port: tunnel_port) project.env.update(@ctx, :host, url) ShopifyCLI::Tasks::UpdateDashboardURLS.call( @ctx, url: url, callback_url: "/auth/callback", ) if project.env.shop project_url = "#{project.env.host}/login?shop=#{project.env.shop}" @ctx.puts("\n" + @ctx.message("php.serve.open_info", project_url) + "\n") end CLI::UI::Frame.open(@ctx.message("php.serve.running_server")) do if ShopifyCLI::ProcessSupervision.running?(:npm_watch) ShopifyCLI::ProcessSupervision.stop(:npm_watch) end ShopifyCLI::ProcessSupervision.start(:npm_watch, "npm run watch", force_spawn: true) env = project.env.to_h @ctx.system("php", "artisan", "serve", "--port", tunnel_port, env: env) end end def self.help ShopifyCLI::Context.message("php.serve.help", ShopifyCLI::TOOL_NAME) end def self.extended_help ShopifyCLI::Context.message("php.serve.extended_help") end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
shopify-cli-2.6.6 | lib/project_types/php/commands/serve.rb |
shopify-cli-2.6.5 | lib/project_types/php/commands/serve.rb |
shopify-cli-2.6.4 | lib/project_types/php/commands/serve.rb |