-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
23 lines (17 loc) · 720 Bytes
/
Copy pathenv.example
File metadata and controls
23 lines (17 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Database
DATABASE_URL="file:./dev.db"
# Better Auth
BETTER_AUTH_SECRET="your-secret-key-here-generate-with-openssl-rand-base64-32"
BETTER_AUTH_URL="http://localhost:3000"
# GitHub OAuth (create at https://github.com/settings/developers)
GITHUB_CLIENT_ID="your-github-client-id"
GITHUB_CLIENT_SECRET="your-github-client-secret"
# Google Gemini AI (get at https://aistudio.google.com/app/apikey)
GOOGLE_GEMINI_API_KEY="your-gemini-api-key"
# Pinecone (get at https://app.pinecone.io/)
PINECONE_API_KEY="your-pinecone-api-key"
# Inngest (get at https://www.inngest.com/)
INNGEST_EVENT_KEY="your-inngest-event-key"
INNGEST_SIGNING_KEY="your-inngest-signing-key"
# App URL
NEXT_PUBLIC_APP_URL="http://localhost:3000"