Merge remote-tracking branch 'origin/main' into cloudflare
This commit is contained in:
commit
6bb12a2d86
30
env.example
30
env.example
@ -8,13 +8,13 @@ NEXT_PUBLIC_BASE_URL="http://localhost:3000"
|
|||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Database
|
# Database
|
||||||
# https://mksaas.com/docs/database#setup
|
# https://mksaas.com/docs/database
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
DATABASE_URL=""
|
DATABASE_URL=""
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Better Auth
|
# Better Auth
|
||||||
# https://mksaas.com/docs/auth#setup
|
# https://mksaas.com/docs/auth
|
||||||
# Generate a random string for the secret key using `openssl rand -base64 32`
|
# Generate a random string for the secret key using `openssl rand -base64 32`
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
BETTER_AUTH_SECRET=""
|
BETTER_AUTH_SECRET=""
|
||||||
@ -39,8 +39,8 @@ GOOGLE_CLIENT_SECRET=""
|
|||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Email / Newsletter (Resend)
|
# Email / Newsletter (Resend)
|
||||||
# https://mksaas.com/docs/email#setup
|
# https://mksaas.com/docs/email
|
||||||
# https://mksaas.com/docs/newsletter#setup
|
# https://mksaas.com/docs/newsletter
|
||||||
# Get API key and audience id from https://resend.com
|
# Get API key and audience id from https://resend.com
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
RESEND_API_KEY=""
|
RESEND_API_KEY=""
|
||||||
@ -48,7 +48,7 @@ RESEND_AUDIENCE_ID=""
|
|||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Storage (Cloudflare R2 or S3-compatible service of your choice)
|
# Storage (Cloudflare R2 or S3-compatible service of your choice)
|
||||||
# https://mksaas.com/docs/storage#setup
|
# https://mksaas.com/docs/storage
|
||||||
# Cloudflare R2: https://www.cloudflare.com/developer-platform/products/r2
|
# Cloudflare R2: https://www.cloudflare.com/developer-platform/products/r2
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
STORAGE_REGION="auto"
|
STORAGE_REGION="auto"
|
||||||
@ -60,7 +60,7 @@ STORAGE_PUBLIC_URL=""
|
|||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Payment (Stripe)
|
# Payment (Stripe)
|
||||||
# https://mksaas.com/docs/payment#setup
|
# https://mksaas.com/docs/payment
|
||||||
# Get Stripe key and secret from https://dashboard.stripe.com
|
# Get Stripe key and secret from https://dashboard.stripe.com
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
STRIPE_SECRET_KEY=""
|
STRIPE_SECRET_KEY=""
|
||||||
@ -84,13 +84,16 @@ NEXT_PUBLIC_STRIPE_PRICE_CREDITS_ENTERPRISE=""
|
|||||||
# Configurations
|
# Configurations
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Disable image optimization, check out next.config.ts for more details
|
# Disable image optimization, check out next.config.ts for more details
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
DISABLE_IMAGE_OPTIMIZATION=false
|
DISABLE_IMAGE_OPTIMIZATION=false
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
# Run this website as demo website, in most cases, you should set this to false
|
# Run this website as demo website, in most cases, you should set this to false
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
NEXT_PUBLIC_DEMO_WEBSITE=false
|
NEXT_PUBLIC_DEMO_WEBSITE=false
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Analytics
|
# Analytics
|
||||||
# https://mksaas.com/docs/analytics#setup
|
# https://mksaas.com/docs/analytics
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Google Analytics (https://analytics.google.com)
|
# Google Analytics (https://analytics.google.com)
|
||||||
# https://mksaas.com/docs/analytics#google
|
# https://mksaas.com/docs/analytics#google
|
||||||
@ -156,19 +159,20 @@ NEXT_PUBLIC_AFFILIATE_PROMOTEKIT_ID=""
|
|||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Captcha (Cloudflare Turnstile)
|
# Captcha (Cloudflare Turnstile)
|
||||||
# https://mksaas.com/docs/captcha#setup
|
# https://mksaas.com/docs/captcha
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
NEXT_PUBLIC_TURNSTILE_SITE_KEY=""
|
NEXT_PUBLIC_TURNSTILE_SITE_KEY=""
|
||||||
TURNSTILE_SECRET_KEY=""
|
TURNSTILE_SECRET_KEY=""
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Crisp
|
# Crisp
|
||||||
# https://mksaas.com/docs/chat#setup
|
# https://mksaas.com/docs/chat
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
NEXT_PUBLIC_CRISP_WEBSITE_ID=""
|
NEXT_PUBLIC_CRISP_WEBSITE_ID=""
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Cron Jobs
|
# Cron Jobs
|
||||||
|
# https://mksaas.com/docs/cronjobs
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
CRON_JOBS_USERNAME=""
|
CRON_JOBS_USERNAME=""
|
||||||
CRON_JOBS_PASSWORD=""
|
CRON_JOBS_PASSWORD=""
|
||||||
@ -185,16 +189,8 @@ GOOGLE_GENERATIVE_AI_API_KEY=""
|
|||||||
DEEPSEEK_API_KEY=""
|
DEEPSEEK_API_KEY=""
|
||||||
OPENROUTER_API_KEY=""
|
OPENROUTER_API_KEY=""
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
# Basic Authentication
|
|
||||||
# Used for protecting sensitive API endpoints like distribute-credits
|
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
BASIC_AUTH_USERNAME="admin"
|
|
||||||
BASIC_AUTH_PASSWORD=""
|
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Web Content Analyzer (Firecrawl)
|
# Web Content Analyzer (Firecrawl)
|
||||||
# https://firecrawl.dev/
|
# https://firecrawl.dev/
|
||||||
# Get API key from https://firecrawl.dev/app
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
FIRECRAWL_API_KEY=""
|
FIRECRAWL_API_KEY=""
|
||||||
|
Loading…
Reference in New Issue
Block a user