-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
20 lines (15 loc) · 925 Bytes
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# --- Supabase Configuration ---
# URL of your Supabase project, required to interact with the Supabase API.
NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
# Public anonymous key for Supabase, used for client-side interactions.
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key-here
# --- Prisma Configuration ---
# The connection string for the Prisma ORM, which connects to your database.
# This includes credentials, host, port, and database name.
DATABASE_URL="postgres://postgres.[your-supabase-project]:[password]@aws-0-[aws-region].pooler.supabase.com:6543/postgres?pgbouncer=true"
# Direct connection URL used by Prisma for more advanced features
# such as connection pooling or read replicas (if applicable).
DIRECT_URL="postgres://postgres.[your-supabase-project]:[password]@aws-0-[aws-region].pooler.supabase.com:5432/postgres"
# --- Imgur Configuration ---
# Imgur Client ID
IMGUR_CLIENT_ID=[Client-ID]