-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathenv.example
32 lines (24 loc) · 951 Bytes
/
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
# The public base url of this application
BASE_URL=http://localhost:3000
# The postgres database url
DATABASE_URL=postgresql://localhost:5432/basechat
# Your Ragie API key. You can get one by creating an account at https://ragie.ai
RAGIE_API_KEY=
# Your Ragie webhook secret. You can get this by creating a webhook endpoint in your Ragie account.
RAGIE_WEBHOOK_SECRET=
# Your OpenAI API key
OPENAI_API_KEY=
# Auth.js config
AUTH_DRIZZLE_URL=postgresql://localhost:5432/basechat
# Create using `npx auth`. Read more: https://cli.authjs.dev
AUTH_SECRET=
# Configure auth provider secrets. Learn more by reading the documentation at https://authjs.dev/
AUTH_GOOGLE_ID=
AUTH_GOOGLE_SECRET=
# SMTP settings - These are default development settings for MailHog (https://github.com/mailhog/MailHog)
SMTP_FROM=noreply@example.com
SMTP_HOST=localhost
SMTP_PORT=1025
SMTP_SECURE=0
SMTP_USER= # Not required
SMTP_PASSWORD= # Not required