-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (29 loc) · 843 Bytes
/
.env.example
File metadata and controls
37 lines (29 loc) · 843 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
# Example .env file
# Copy this file to .env and fill in your values
# Backend
DATABASE_URL=postgresql://user:password@localhost:5432/dbname
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_ANON_KEY=your-anon-key-here
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key-here
OPENAI_API_KEY=your-openai-api-key-here
JWT_SECRET=your-secret-key-here
JWT_EXPIRES_IN=3600
PORT=3000
# Frontend
NEXT_PUBLIC_API_URL=http://localhost:3000
NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key-here
NEXT_PUBLIC_SUPABASE_SERVICE_ROLE_KEY=your-service-role-key-here
# WebSocket
WS_URL=""
# Embedding Model
EMBEDDING_MODEL=""
# Rate Limiting
RATE_LIMIT_WINDOW="60"
RATE_LIMIT_MAX_REQUESTS="100"
# Logging
LOG_LEVEL="INFO"
# Security
JWT_SECRET="your-secret-key-here"
# Testing
TEST_DATABASE_URL=""