Skip to content

Commit

Permalink
Rename env template for vercel compat
Browse files Browse the repository at this point in the history
  • Loading branch information
scosman committed Nov 4, 2024
1 parent d18a91d commit 40de71b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions local_env_template → .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]'
# PRIVATE_FROM_ADMIN_EMAIL='REPLACE_ME'
# PRIVATE_RESEND_API_KEY='REPLACE_ME'
# Email address messages will be sent from
# PRIVATE_FROM_ADMIN_EMAIL='[email protected]'
# Resend API key
# PRIVATE_RESEND_API_KEY='your_resend_api_key'
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit 40de71b

Please sign in to comment.