Skip to content

Commit 06aa77f

Browse files
committed
update: add env.example file
1 parent 7cb9ff3 commit 06aa77f

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

.env.example

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Supabase
2+
SUPABASE_URL=''
3+
SUPABASE_ANON_KEY=''
4+
SUPABASE_SERVICE_ROLE_KEY=''
5+
6+
# Replicate
7+
REPLICATE_API_TOKEN=''
8+
9+
# Use the following in the development environment
10+
NGROK_HOST=''
11+
12+
# Stripe
13+
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=''
14+
STRIPE_SECRET_KEY=''
15+
STRIPE_WEBHOOK_SECRET=''
16+
17+
# Use the following in the production environment
18+
NEXT_PUBLIC_SITE_URL=''
19+
20+
# Resend
21+
RESEND_API_KEY=''

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ yarn-debug.log*
3030
yarn-error.log*
3131

3232
# env files (can opt-in for committing if needed)
33-
.env*
33+
.env.local
34+
.env
35+
.env.production
36+
.env.development
3437

3538
# vercel
3639
.vercel

0 commit comments

Comments
 (0)