-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
47 lines (39 loc) · 1.57 KB
/
.env.example
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
# Environment Variables for the browser
NEXT_PUBLIC_APP_URL=http://localhost:3000
# CLI: openssl rand -base64 32
CRON_SECRET=secret
JWT_SECRET=secret
# Supabase Auth
NEXT_PUBLIC_SUPABASE_URL=<your_supabase_project_url>
NEXT_PUBLIC_SUPABASE_ANON_KEY=<your_supabase_anon_key>
# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
# Connect to Supabase via connection pooling with Supavisor.
DATABASE_URL="postgresql://postgres.[PROJECT-REF]:[PRISMA-PASSWORD]@[DB-REGION].pooler.supabase.com:6543/postgres?pgbouncer=true"
# Direct connection to the database. Used for migrations.
DIRECT_URL="postgresql://postgres.[PROJECT-REF]:[YOUR-PASSWORD]@[DB-REGION].pooler.supabase.com:5432/postgres"
# SMTP Transport Configuration
EMAIL_SERVER="smtp://username:password@smtp.example.com:587"
EMAIL_SERVER_HOST=smtp.example.com
EMAIL_SERVER_PORT=587
EMAIL_SERVER_USER=username
EMAIL_SERVER_PASSWORD=password
EMAIL_FROM=noreply@example.com
EMAIL_NAME=Sender
EMAIL_BREVO_USER=
EMAIL_BREVO_PASS=
EMAIL_GMAIL_USER=
EMAIL_GMAIL_PASS=
# Authentication OAuth
AUTH_GITHUB_ID=
AUTH_GITHUB_SECRET=
AUTH_GOOGLE_ID=
AUTH_GOOGLE_SECRET=
AUTH_FACEBOOK_ID=
AUTH_FACEBOOK_SECRET=
AUTH_KAKAO_ID=
AUTH_KAKAO_SECRET=
AUTH_TWITTER_ID=
AUTH_TWITTER_SECRET=