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
5 changes: 1 addition & 4 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ SPREE_PUBLISHABLE_KEY=your_publishable_api_key
# Set these to your store's default_country_iso and default_locale
NEXT_PUBLIC_DEFAULT_COUNTRY=us
NEXT_PUBLIC_DEFAULT_LOCALE=en
NEXT_PUBLIC_SITE_URL=https://your-store.com
NEXT_PUBLIC_STORE_NAME=Spree Store
NEXT_PUBLIC_STORE_DESCRIPTION=A modern e-commerce storefront powered by Spree Commerce and Next.js.

# Store SEO settings
NEXT_PUBLIC_SITE_URL=https://your-store-domain.com
STORE_SEO_TITLE=
STORE_META_DESCRIPTION=
STORE_META_KEYWORDS=
Expand Down Expand Up @@ -56,6 +56,3 @@ SENTRY_AUTH_TOKEN=your-auth-token
# Set to "true" only if you have user consent or a privacy policy covering this.
SENTRY_SEND_DEFAULT_PII=false
NEXT_PUBLIC_SENTRY_SEND_DEFAULT_PII=false

# Public site URL (required for sitemap and robots.txt generation)
NEXT_PUBLIC_SITE_URL=https://your-store.com
2 changes: 0 additions & 2 deletions emails/order-canceled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ export default function Preview() {
<OrderCanceledEmail
orderNumber="R987654321"
customerName="Jane Smith"
storeName="Spree Store"
storeUrl="http://localhost:3001"
items={[
{
name: "Classic Tote Bag",
Expand Down
2 changes: 0 additions & 2 deletions emails/order-confirmation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ export default function Preview() {
<OrderConfirmationEmail
orderNumber="R987654321"
customerName="Jane Smith"
storeName="Spree Store"
storeUrl="http://localhost:3001"
items={[
{
name: "Classic Tote Bag",
Expand Down
6 changes: 1 addition & 5 deletions emails/password-reset.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ import { PasswordResetEmail } from "../src/lib/emails/password-reset";

export default function Preview() {
return (
<PasswordResetEmail
resetUrl="http://localhost:3001/us/en/account/reset-password?token=abc123def456"
storeName="Spree Store"
storeUrl="http://localhost:3001"
/>
<PasswordResetEmail resetUrl="http://localhost:3001/us/en/account/reset-password?token=abc123def456" />
);
}
2 changes: 0 additions & 2 deletions emails/shipment-shipped.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ export default function Preview() {
<ShipmentShippedEmail
orderNumber="R987654321"
customerName="Jane Smith"
storeName="Spree Store"
storeUrl="http://localhost:3001"
shipments={[
{
number: "H123456789",
Expand Down
Loading
Loading