initial version (template only)
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
# Learn more about configuring your app at https://shopify.dev/docs/apps/tools/cli/configuration
|
||||
|
||||
client_id = "fbc263e6cc28e8de031878d2a0f17444"
|
||||
application_url = "https://example.com"
|
||||
embedded = true
|
||||
name = "linumiq-invoice"
|
||||
|
||||
[access_scopes]
|
||||
# Learn more at https://shopify.dev/docs/apps/tools/cli/configuration#access_scopes
|
||||
scopes = "write_products,write_metaobjects,write_metaobject_definitions"
|
||||
|
||||
[product.metafields.app.demo_info]
|
||||
type = "single_line_text_field"
|
||||
name = "Demo Source Info"
|
||||
description = "Tracks products created by the Shopify app template for development"
|
||||
|
||||
[product.metafields.app.demo_info.access]
|
||||
admin = "merchant_read_write"
|
||||
|
||||
[metaobjects.app.example]
|
||||
name = "Example"
|
||||
description = "An example metaobject definition created by this template"
|
||||
|
||||
[metaobjects.app.example.access]
|
||||
admin = "merchant_read_write"
|
||||
|
||||
[metaobjects.app.example.fields.title]
|
||||
name = "Title"
|
||||
type = "single_line_text_field"
|
||||
required = true
|
||||
|
||||
[metaobjects.app.example.fields.description]
|
||||
name = "Description"
|
||||
type = "multi_line_text_field"
|
||||
|
||||
[webhooks]
|
||||
api_version = "2026-07"
|
||||
|
||||
[[webhooks.subscriptions]]
|
||||
uri = "/webhooks/app/uninstalled"
|
||||
topics = [ "app/uninstalled" ]
|
||||
|
||||
[[webhooks.subscriptions]]
|
||||
uri = "/webhooks/app/scopes_update"
|
||||
topics = [ "app/scopes_update" ]
|
||||
|
||||
[auth]
|
||||
redirect_urls = [ "https://example.com/api/auth" ]
|
||||
|
||||
[build]
|
||||
include_config_on_deploy = true
|
||||
automatically_update_urls_on_dev = true
|
||||
Reference in New Issue
Block a user