-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
69 lines (55 loc) · 2.29 KB
/
Copy path.env.example
File metadata and controls
69 lines (55 loc) · 2.29 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Database
# ------------------------------------------------------------------------------------
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=postgres
POSTGRES_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}
REDIS_URL=redis://redis:6379
# Better Auth
# ------------------------------------------------------------------------------------
BETTER_AUTH_SECRET=veryverylongsecretkeytobereplaced
# Nextjs
# ------------------------------------------------------------------------------------
NEXT_PUBLIC_APP_URL=http://localhost:3000
# Stripe
# ------------------------------------------------------------------------------------
STRIPE_PUBLISHABLE_KEY=pk_test_xxx
STRIPE_SECRET_KEY=sk_test_yyy
STRIPE_WEBHOOK_SECRET=whsec_xxx
STRIPE_SUCCESS_URL=http://localhost:3000/settings/billing
STRIPE_CANCEL_URL=http://localhost:3000/settings/billing
# Resend
# ------------------------------------------------------------------------------------
# RESEND_API_KEY=random
# RESEND_FROM_EMAIL=onboarding@kosuke.ai
# RESEND_FROM_NAME=Kosuke Template
# RESEND_REPLY_TO=support@kosuke.ai
# Sentry
# ------------------------------------------------------------------------------------
# NEXT_PUBLIC_SENTRY_DSN=https://your-sentry-dsn-here.ingest.sentry.io/project-id
# SENTRY_ENVIRONMENT=production
# SENTRY_DSN=https://xxx.ingest.de.sentry.io/
# Plausible
# ------------------------------------------------------------------------------------
NEXT_PUBLIC_PLAUSIBLE_DOMAIN=template.kosuke.ai
NEXT_PUBLIC_PLAUSIBLE_HOST=https://plausible.io
# S3-Compatible Storage (AWS S3 or DigitalOcean Spaces)
# S3_PROVIDER=do-spaces
# DigitalOcean Spaces (example)
S3_REGION=nyc3
S3_ENDPOINT=https://nyc3.digitaloceanspaces.com
S3_BUCKET=your-bucket-name
S3_ACCESS_KEY_ID=your_access_key
S3_SECRET_ACCESS_KEY=your_secret_key
# AWS S3 (uncomment and replace values)
# S3_REGION=us-east-1
# S3_ENDPOINT=https://s3.us-east-1.amazonaws.com
# S3_BUCKET=your-bucket-name
# S3_ACCESS_KEY_ID=your_access_key
# S3_SECRET_ACCESS_KEY=your_secret_key
# Google AI
# ------------------------------------------------------------------------------------
GOOGLE_AI_API_KEY=xxx
# Encryption key
# ------------------------------------------------------------------------------------
ENCRYPTION_KEY=your_32+_character_random_string_here