-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
28 lines (22 loc) · 866 Bytes
/
Copy pathenv.example
File metadata and controls
28 lines (22 loc) · 866 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
# Database Configuration (local SQLite file — self-contained, no server required)
# In the packaged desktop app the Tauri shell points this at a writable
# app-data path automatically; for local dev a project-relative file is fine.
DATABASE_URL=file:./prisma/temlet.db
# Redis Configuration
REDIS_URL=redis://localhost:6379
# Nexrender Configuration
NEXRENDER_SECRET=your_secure_nexrender_secret_key
NEXRENDER_SERVER_URL=http://localhost:3000
# Application Configuration
NODE_ENV=development
PORT=3001
# Working Directory Configuration
WORKING_DIRECTORY=C:/Users/youruser/Documents
# Next.js Configuration
NEXTAUTH_SECRET=your_nextauth_secret
NEXTAUTH_URL=http://localhost:3001
# External APIs (if needed)
OPENAI_API_KEY=your_openai_api_key
GROK_API_KEY=your_grok_api_key
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret