-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
41 lines (31 loc) · 847 Bytes
/
env.example
File metadata and controls
41 lines (31 loc) · 847 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
# Database Configuration
DATABASE_URL="postgresql://postgres:password@localhost:5432/dbname"
# Auth.js Configuration
AUTH_SECRET="ke"
AUTH_TRUST_HOST=true
# Application Configuration
NODE_ENV=development
PUBLIC_APP_URL="http://localhost:5173"
# SendGrid Email Configuration
SENDGRID_API_KEY="key"
SENDGRID_FROM_EMAIL="@gmail.com"
SENDGRID_FROM_NAME="ShieldAuth"
# Google OAuth
GOOGLE_CLIENT_ID="key"
GOOGLE_CLIENT_SECRET="key"
# GitHub OAuth
GITHUB_CLIENT_ID="key"
GITHUB_CLIENT_SECRET="key"
#Gimini Integration
GEMINI_API_KEY="key"
# Main App
EMBEDDING_API_URL="http://localhost:8001"
# Embedding Service
PORT=8001
HOST=0.0.0.0
ENVIRONMENT=production
# Model Configuration
MODEL_NAME=all-MiniLM-L6-v2
# Vercel AI SDK Configuration for Gemini
VERCEL_AI_API_KEY="your-vercel-ai-api-key-here"
VERCEL_AI_BASE_URL="https://api.vercel.ai"