Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .playwright-mcp/dashboard-bottom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .playwright-mcp/dashboard-revenue-verified.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .playwright-mcp/dashboard-scrolled.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .playwright-mcp/dashboard-test.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .playwright-mcp/products-page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
401 changes: 401 additions & 0 deletions e2e/analytics.spec.ts

Large diffs are not rendered by default.

38 changes: 37 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -290,12 +290,12 @@ model Store {
city String?
state String?
postalCode String?
country String @default("US")
country String @default("BD")

// Settings
currency String @default("USD")
timezone String @default("UTC")
locale String @default("en")
currency String @default("BDT")
timezone String @default("Asia/Dhaka")
locale String @default("bn")

// Subscription
subscriptionPlan SubscriptionPlan @default(FREE)
Expand Down
36 changes: 18 additions & 18 deletions prisma/seed.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -155,16 +155,16 @@ async function main() {
customDomain: null,
description: 'A demo e-commerce store for testing',
email: 'store@example.com',
phone: '+1-555-0100',
phone: '+880-1712-345678',
website: 'https://demo-store.example.com',
address: '123 Commerce Street',
city: 'San Francisco',
state: 'CA',
postalCode: '94102',
country: 'US',
currency: 'USD',
timezone: 'America/Los_Angeles',
locale: 'en',
address: '123 Gulshan Avenue',
city: 'Dhaka',
state: 'Dhaka',
postalCode: '1212',
country: 'BD',
currency: 'BDT',
timezone: 'Asia/Dhaka',
locale: 'bn',
subscriptionPlan: SubscriptionPlan.PRO,
subscriptionStatus: SubscriptionStatus.ACTIVE,
productLimit: 1000,
Expand All @@ -180,16 +180,16 @@ async function main() {
customDomain: null,
description: 'Acme store for products and services',
email: 'sales@acme-store.com',
phone: '+1-555-0101',
phone: '+880-1812-345678',
website: 'https://acme-store.example.com',
address: '456 Commerce Avenue',
city: 'New York',
state: 'NY',
postalCode: '10001',
country: 'US',
currency: 'USD',
timezone: 'America/New_York',
locale: 'en',
address: '456 Banani Road',
city: 'Dhaka',
state: 'Dhaka',
postalCode: '1213',
country: 'BD',
currency: 'BDT',
timezone: 'Asia/Dhaka',
locale: 'bn',
subscriptionPlan: SubscriptionPlan.BASIC,
subscriptionStatus: SubscriptionStatus.ACTIVE,
productLimit: 500,
Expand Down
Loading
Loading