-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshopify.app.toml.example
45 lines (35 loc) · 1.16 KB
/
shopify.app.toml.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Learn more about configuring your app at https://shopify.dev/docs/apps/tools/cli/configuration
client_id = "YOURCLIENT_ID"
name = "BTCPay Server APPNAME"
handle = "btcpay-server-APPNAME"
application_url = "https://YOUR_HOSTED_APP_URL.COM/"
embedded = true
[build]
automatically_update_urls_on_dev = false
dev_store_url = "YOURDEV_STORE.myshopify.com"
include_config_on_deploy = true
[access_scopes]
# Learn more at https://shopify.dev/docs/apps/tools/cli/configuration#access_scopes
scopes = ""
[auth]
redirect_urls = [
"https://YOUR_HOSTED_APP_URL.COM/auth/callback",
"https://YOUR_HOSTED_APP_URL.COM/auth/shopify/callback",
"https://YOUR_HOSTED_APP_URL.COM/api/auth/callback"
]
[webhooks]
api_version = "2024-10"
[[webhooks.subscriptions]]
uri = "/webhooks/customers/data_request"
compliance_topics = [ "customers/data_request" ]
[[webhooks.subscriptions]]
uri = "/webhooks/customers/redact"
compliance_topics = [ "customers/redact" ]
[[webhooks.subscriptions]]
uri = "/webhooks/shop/redact"
compliance_topics = [ "shop/redact" ]
[[webhooks.subscriptions]]
topics = [ "app/uninstalled" ]
uri = "/webhooks/app/uninstalled"
[pos]
embedded = false