From 40de71b51b92140475dd929a4c790738cb4c5164 Mon Sep 17 00:00:00 2001 From: scosman Date: Mon, 4 Nov 2024 10:33:14 -0500 Subject: [PATCH] Rename env template for vercel compat --- local_env_template => .env.example | 10 +++++++--- README.md | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) rename local_env_template => .env.example (52%) diff --git a/local_env_template b/.env.example similarity index 52% rename from local_env_template rename to .env.example index b2a9de9c..04e92240 100644 --- a/local_env_template +++ b/.env.example @@ -6,7 +6,11 @@ PRIVATE_SUPABASE_SERVICE_ROLE='REPLACE_ME' # Stripe settings PRIVATE_STRIPE_API_KEY='REPLACE_ME' -# settings for email - optional +# Optional - settings for email + +# Email address admin messages will be sent to # PRIVATE_ADMIN_EMAIL='your_email@example.com' -# PRIVATE_FROM_ADMIN_EMAIL='REPLACE_ME' -# PRIVATE_RESEND_API_KEY='REPLACE_ME' \ No newline at end of file +# Email address messages will be sent from +# PRIVATE_FROM_ADMIN_EMAIL='no_reply@example.com' +# Resend API key +# PRIVATE_RESEND_API_KEY='your_resend_api_key' \ No newline at end of file diff --git a/README.md b/README.md index 24fde4f3..4bfe3259 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ git pull [Your Repo Created Above] cd CMSaasStarter ## or your repo name if different npm install ## Create an env file. You'll replace the values in this in later steps. -cp local_env_template .env.local +cp .env.example .env.local ## Run the project locally in dev mode, and launch the browser npm run dev -- --open ```