-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
49 lines (39 loc) · 875 Bytes
/
Copy path.env.example
File metadata and controls
49 lines (39 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# DB
POSTGRES_URL="postgres://postgres:mysecretpassword@localhost:5432/local"
# ENV
# We use Vercel connotation: development/preview/production
PUBLIC_ENV=development
PUBLIC_PRODUCTION_URL='scrt.link'
# OAuth Provider
GOOGLE_CLIENT_ID=''
GOOGLE_CLIENT_SECRET=''
# SvelteKit
# RateLimiter
RATE_LIMIT_COOKIE_SECRET=''
# S3
PUBLIC_S3_ENDPOINT=''
PUBLIC_S3_BUCKET=''
PUBLIC_S3_CDN_BUCKET=''
S3_ACCESS_KEY=''
S3_SECRET_KEY=''
# Transactional Email (Brevo)
BREVO_API=''
BREVO_MQL_LIST_ID=''
# Vercel
CRON_SECRET=''
VERCEL_PROJECT_ID=''
VERCEL_TEAM_ID=''
VERCEL_API_TOKEN=''
# Imgix: Image CDN
PUBLIC_IMGIX_CDN_URL=''
# ReCaptcha
PUBLIC_RECAPTCHA_CLIENT_KEY=''
RECAPTCHA_SERVER_KEY=''
# Stripe
PUBLIC_STRIPE_PUBLISHABLE_KEY=''
STRIPE_SECRET_KEY=''
STRIPE_WEBHOOK_SECRET=''
# E2E test credentials
# Be aware. Need for Github Actions.
E2E_USER_EMAIL=''
E2E_USER_PASSWORD=''