Sha256: a8b8eb1e5be72cfc417b1a9cd6d43dd32d1525f1eb848d7b5f348fe8ff3345e7
Contents?: true
Size: 915 Bytes
Versions: 4
Compression:
Stored size: 915 Bytes
Contents
ShopifyApp.configure do |config| config.application_name = "<%= @application_name %>" config.api_key = ENV['SHOPIFY_API_KEY'] config.secret = ENV['SHOPIFY_API_SECRET'] config.old_secret = "<%= @old_secret %>" config.scope = "<%= @scope %>" # Consult this page for more scope options: # https://help.shopify.com/en/api/getting-started/authentication/oauth/scopes config.embedded_app = <%= embedded_app? %> config.after_authenticate_job = false config.api_version = "<%= @api_version %>" config.shop_session_repository = 'ShopifyApp::InMemoryShopSessionStore' end # ShopifyApp::Utils.fetch_known_api_versions # Uncomment to fetch known api versions from shopify servers on boot # ShopifyAPI::ApiVersion.version_lookup_mode = :raise_on_unknown # Uncomment to raise an error if attempting to use an api version that was not previously known
Version data entries
4 entries across 4 versions & 1 rubygems