fix: update application URLs in shopify.app.toml for correct deployment
Some checks failed
CI / Lint, Unit & Integration Tests (push) Has been cancelled

This commit is contained in:
MOHAN 2026-08-25 22:22:35 +05:30
parent b38e2954c9
commit 730a681d46
2 changed files with 5 additions and 4 deletions

View File

@ -10,6 +10,7 @@ module.exports = {
PORT: "11002", PORT: "11002",
}, },
instances: 1, instances: 1,
exec_mode: "fork",
autorestart: true, autorestart: true,
max_memory_restart: "400M", max_memory_restart: "400M",
}, },
@ -22,6 +23,7 @@ module.exports = {
NODE_ENV: "production", NODE_ENV: "production",
}, },
instances: 1, instances: 1,
exec_mode: "fork",
autorestart: true, autorestart: true,
max_memory_restart: "300M", max_memory_restart: "300M",
}, },

View File

@ -10,7 +10,7 @@ name = "Metatron-delivery"
# port to build a tunnel URL from and silently keeps using whatever's here # port to build a tunnel URL from and silently keeps using whatever's here
# — which is exactly what caused the embedded admin app to never load # — which is exactly what caused the embedded admin app to never load
# during initial setup (see shopify.web.toml's own comment). # during initial setup (see shopify.web.toml's own comment).
application_url = "https://replace-with-your-tunnel-url.example.com" application_url = "https://metatron-delivery.thedomainnest.com"
embedded = true embedded = true
[access_scopes] [access_scopes]
@ -25,8 +25,7 @@ embedded = true
scopes = "read_locales,read_locations,read_markets,read_metaobjects,read_orders,read_products,write_cart_transforms,write_delivery_customizations,write_metaobjects,write_orders,write_payment_customizations" scopes = "read_locales,read_locations,read_markets,read_metaobjects,read_orders,read_products,write_cart_transforms,write_delivery_customizations,write_metaobjects,write_orders,write_payment_customizations"
[auth] [auth]
redirect_urls = [ "https://replace-with-your-tunnel-url.example.com/auth/callback" ] redirect_urls = [ "https://metatron-delivery.thedomainnest.com/auth/callback" ]
[webhooks] [webhooks]
api_version = "2025-01" api_version = "2025-01"
@ -113,7 +112,7 @@ api_version = "unstable"
# Remix routes it forwards to (apps.scheduling.*.tsx) assume that exact # Remix routes it forwards to (apps.scheduling.*.tsx) assume that exact
# prefix. # prefix.
[app_proxy] [app_proxy]
url = "https://replace-with-your-tunnel-url.example.com/apps/scheduling" url = "https://metatron-delivery.thedomainnest.com/apps/scheduling"
subpath = "scheduling" subpath = "scheduling"
prefix = "apps" prefix = "apps"