Deleted the ErrorBoundary component from the makerkit package and introduced new exception capture mechanisms for Baselime and Sentry monitoring providers. The code now captures all exceptions thrown within components and sends them to the configured monitoring provider, which in turn logs the errors for debugging purposes. Updated packages and environment variables accordingly to support this feature.
52 lines
1.5 KiB
Plaintext
52 lines
1.5 KiB
Plaintext
## DO NOT ADD VARS HERE UNLESS THEY ARE PUBLIC OR NOT SENSITIVE
|
|
## THIS ENV IS USED FOR PRODUCTION AND IS COMMITED TO THE REPO
|
|
## AVOID PLACING SENSITIVE DATA IN THIS FILE.
|
|
## PUBLIC KEYS OR CONFIGURATION ARE OKAY TO BE PLACED HERE.
|
|
|
|
# SITE
|
|
NEXT_PUBLIC_SITE_URL=http://localhost:3000
|
|
NEXT_PUBLIC_PRODUCT_NAME=Makerkit
|
|
NEXT_PUBLIC_SITE_TITLE="Makerkit - The easiest way to build and manage your SaaS"
|
|
NEXT_PUBLIC_SITE_DESCRIPTION="Makerkit is the easiest way to build and manage your SaaS. It provides you with the tools you need to build your SaaS, without the hassle of building it from scratch."
|
|
NEXT_PUBLIC_DEFAULT_THEME_MODE=light
|
|
NEXT_PUBLIC_THEME_COLOR="#ffffff"
|
|
NEXT_PUBLIC_THEME_COLOR_DARK="#0a0a0a"
|
|
|
|
# LOCALES PATH
|
|
NEXT_PUBLIC_LOCALES_PATH=apps/web/public/locales
|
|
|
|
# PATHS (to be used in "packaages")
|
|
SIGN_IN_PATH=/auth/sign-in
|
|
SIGN_UP_PATH=/auth/sign-up
|
|
TEAM_ACCOUNTS_HOME_PATH=/home
|
|
INVITATION_PAGE_PATH=/join
|
|
|
|
# CMS
|
|
CMS_CLIENT=keystatic
|
|
|
|
# KEYSTATIC
|
|
NEXT_PUBLIC_KEYSTATIC_CONTENT_PATH=./content
|
|
|
|
# AUTH
|
|
NEXT_PUBLIC_AUTH_PASSWORD=true
|
|
NEXT_PUBLIC_AUTH_MAGIC_LINK=false
|
|
|
|
# BILLING
|
|
NEXT_PUBLIC_BILLING_PROVIDER=stripe
|
|
|
|
# SUPABASE
|
|
NEXT_PUBLIC_SUPABASE_URL=
|
|
|
|
# STRIPE
|
|
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=
|
|
|
|
# FEATURE FLAGS
|
|
NEXT_PUBLIC_ENABLE_ACCOUNT_DELETION=true
|
|
NEXT_PUBLIC_ENABLE_PERSONAL_ACCOUNT_BILLING=true
|
|
NEXT_PUBLIC_ENABLE_ORGANIZATION_DELETION=true
|
|
NEXT_PUBLIC_ENABLE_ORGANIZATION_BILLING=true
|
|
|
|
# MONITORING
|
|
MONITORING_PROVIDER=
|
|
MONITORING_INSTRUMENTATION_ENABLED=false
|