Notifies about new orders with a bell sound and visual indication.
The app is serverless, it uses spring animations and webhooks.
Required permissions Shopify: read_orders, read_customers.
Deploy:
vercel --prod
Create Shopify webhook with:
mutation ($url: URL!) {
webhookSubscriptionCreate(
topic: ORDERS_CREATE
webhookSubscription: {
format: JSON,
callbackUrl: $url
includeFields: [
"id",
"name",
"test",
"customer",
"total_price",
"processed_at",
"financial_status"
]}
) {
userErrors {
field
message
}
webhookSubscription {
id
}
}
}