Skip to content

Commit 17a51b3

Browse files
authored
Merge pull request #44 from Shopify/jamiediep/add-doc-tags-and-placeholders
Add doc tags and replace hardcoded credentials with placeholders
2 parents 4e10167 + 1890ea6 commit 17a51b3

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

shopify.app.toml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Learn more about configuring your app at https://shopify.dev/docs/apps/tools/cli/configuration
22

3-
client_id = "5430497d8dd544f37f3d8a014d7c8b4e"
4-
name = "app"
5-
application_url = "https://shopify.dev/apps/default-app-home"
3+
client_id = "<YOUR_CLIENT_ID>"
4+
name = "<YOUR_APP_NAME>"
5+
application_url = "<YOUR_APP_URL>"
66
embedded = true
77

88
[build]
@@ -12,13 +12,16 @@ include_config_on_deploy = true
1212
[webhooks]
1313
api_version = "2026-04"
1414

15+
# [START access-scopes]
1516
[access_scopes]
1617
# Learn more at https://shopify.dev/docs/apps/tools/cli/configuration#access_scopes
1718
scopes = "write_metaobject_definitions,write_metaobjects,write_products"
19+
# [END access-scopes]
1820

1921
[auth]
20-
redirect_urls = [ "https://shopify.dev/apps/default-app-home/api/auth" ]
22+
redirect_urls = [ "<YOUR_APP_URL>/api/auth" ]
2123

24+
# [START metaobject-definition]
2225
[metaobjects.app.qrcode]
2326
name = "QR Code"
2427
display_name_field = "title"
@@ -49,3 +52,4 @@ name = "Destination"
4952
[metaobjects.app.qrcode.fields.scans]
5053
type = "number_integer"
5154
name = "Scans"
55+
# [END metaobject-definition]

0 commit comments

Comments
 (0)