Sha256: f64396faf792bea7215ebb689058c524673d8e5be24af3a341fb11407a603196
Contents?: true
Size: 841 Bytes
Versions: 14
Compression:
Stored size: 841 Bytes
Contents
DiscoApp::Engine.routes.default_url_options[:host] = ENV['DEFAULT_HOST'] DiscoApp.configure do |config| # Required configuration. config.app_name = ENV['SHOPIFY_APP_NAME'] # Set the below if using an application proxy. config.app_proxy_prefix = ENV['SHOPIFY_APP_PROXY_PREFIX'] # Set the below to create real Shopify charges. config.real_charges = ENV['SHOPIFY_REAL_CHARGES'] === 'true' # Optional configuration. These flags are only respected in the development # environment and will have no effect in production. config.skip_proxy_verification = ENV['SKIP_PROXY_VERIFICATION'] == 'true' config.skip_webhook_verification = ENV['SKIP_WEBHOOK_VERIFICATION'] == 'true' config.skip_carrier_request_verification = ENV['SKIP_CARRIER_REQUEST_VERIFICATION'] == 'true' config.skip_oauth = ENV['SKIP_OAUTH'] == 'true' end
Version data entries
14 entries across 14 versions & 1 rubygems