feat(MED-48): retry
This commit is contained in:
10
.env
10
.env
@@ -5,7 +5,7 @@
|
|||||||
# TO OVERRIDE THESE VARIABLES IN A SPECIFIC ENVIRONMENT, PLEASE ADD THEM TO THE SPECIFIC ENVIRONMENT FILE (e.g. .env.development, .env.production)
|
# TO OVERRIDE THESE VARIABLES IN A SPECIFIC ENVIRONMENT, PLEASE ADD THEM TO THE SPECIFIC ENVIRONMENT FILE (e.g. .env.development, .env.production)
|
||||||
|
|
||||||
# SITE
|
# SITE
|
||||||
NEXT_PUBLIC_SITE_URL=http://localhost:3000
|
NEXT_PUBLIC_SITE_URL=https://localhost:3000
|
||||||
NEXT_PUBLIC_PRODUCT_NAME=MedReport
|
NEXT_PUBLIC_PRODUCT_NAME=MedReport
|
||||||
NEXT_PUBLIC_SITE_TITLE="MedReport"
|
NEXT_PUBLIC_SITE_TITLE="MedReport"
|
||||||
NEXT_PUBLIC_SITE_DESCRIPTION="MedReport."
|
NEXT_PUBLIC_SITE_DESCRIPTION="MedReport."
|
||||||
@@ -42,6 +42,14 @@ NEXT_PUBLIC_LANGUAGE_PRIORITY=application
|
|||||||
NEXT_PUBLIC_ENABLE_NOTIFICATIONS=true
|
NEXT_PUBLIC_ENABLE_NOTIFICATIONS=true
|
||||||
NEXT_PUBLIC_REALTIME_NOTIFICATIONS=true
|
NEXT_PUBLIC_REALTIME_NOTIFICATIONS=true
|
||||||
|
|
||||||
|
# MAILER DEV
|
||||||
|
EMAIL_SENDER=info@medreport.ee
|
||||||
|
EMAIL_USER= # refer to your email provider's documentation
|
||||||
|
EMAIL_PASSWORD= # refer to your email provider's documentation
|
||||||
|
EMAIL_HOST=localhost # refer to your email provider's documentation
|
||||||
|
EMAIL_PORT=1025 # or 465 for SSL
|
||||||
|
EMAIL_TLS=false
|
||||||
|
NODE_TLS_REJECT_UNAUTHORIZED=0
|
||||||
|
|
||||||
# NEXTJS
|
# NEXTJS
|
||||||
NEXT_TELEMETRY_DISABLED=1
|
NEXT_TELEMETRY_DISABLED=1
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import { PageBody, PageHeader } from '@/packages/ui/src/makerkit/page';
|
|||||||
|
|
||||||
import { notFound } from 'next/navigation';
|
import { notFound } from 'next/navigation';
|
||||||
|
|
||||||
import { retrieveCart } from '~/medusa/lib/data/cart';
|
import { retrieveCart } from '@lib/data/cart';
|
||||||
import Cart from '../../_components/cart';
|
import Cart from '../../_components/cart';
|
||||||
import { listProductTypes } from '@lib/data';
|
import { listProductTypes } from '@lib/data';
|
||||||
import CartTimer from '../../_components/cart/cart-timer';
|
import CartTimer from '../../_components/cart/cart-timer';
|
||||||
|
|||||||
@@ -2,14 +2,13 @@ import { use } from 'react';
|
|||||||
|
|
||||||
import { cookies } from 'next/headers';
|
import { cookies } from 'next/headers';
|
||||||
|
|
||||||
import { retrieveCart } from '@lib/data';
|
|
||||||
import { z } from 'zod';
|
import { z } from 'zod';
|
||||||
|
|
||||||
import { UserWorkspaceContextProvider } from '@kit/accounts/components';
|
import { UserWorkspaceContextProvider } from '@kit/accounts/components';
|
||||||
import { Page, PageMobileNavigation, PageNavigation } from '@kit/ui/page';
|
import { Page, PageMobileNavigation, PageNavigation } from '@kit/ui/page';
|
||||||
import { SidebarProvider } from '@kit/ui/shadcn-sidebar';
|
import { SidebarProvider } from '@kit/ui/shadcn-sidebar';
|
||||||
import { StoreCart } from '@medusajs/types';
|
import { StoreCart } from '@medusajs/types';
|
||||||
import { retrieveCart } from '@lib/data';
|
import { retrieveCart } from '@lib/data/cart';
|
||||||
|
|
||||||
import { AppLogo } from '~/components/app-logo';
|
import { AppLogo } from '~/components/app-logo';
|
||||||
import { personalAccountNavigationConfig } from '~/config/personal-account-navigation.config';
|
import { personalAccountNavigationConfig } from '~/config/personal-account-navigation.config';
|
||||||
|
|||||||
@@ -2,9 +2,9 @@ import { Metadata } from 'next';
|
|||||||
|
|
||||||
import { StoreCartShippingOption } from '@medusajs/types';
|
import { StoreCartShippingOption } from '@medusajs/types';
|
||||||
|
|
||||||
import { listCartOptions, retrieveCart } from '~/medusa/lib/data/cart';
|
import { listCartOptions, retrieveCart } from '@lib/data/cart';
|
||||||
import { retrieveCustomer } from '~/medusa/lib/data/customer';
|
import { retrieveCustomer } from '@lib/data/customer';
|
||||||
import { getBaseURL } from '~/medusa/lib/util/env';
|
import { getBaseURL } from '@lib/util/env';
|
||||||
import CartMismatchBanner from '~/medusa/modules/layout/components/cart-mismatch-banner';
|
import CartMismatchBanner from '~/medusa/modules/layout/components/cart-mismatch-banner';
|
||||||
import Footer from '~/medusa/modules/layout/templates/footer';
|
import Footer from '~/medusa/modules/layout/templates/footer';
|
||||||
import Nav from '~/medusa/modules/layout/templates/nav';
|
import Nav from '~/medusa/modules/layout/templates/nav';
|
||||||
|
|||||||
Reference in New Issue
Block a user