-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.env.example.local
More file actions
47 lines (38 loc) · 986 Bytes
/
.env.example.local
File metadata and controls
47 lines (38 loc) · 986 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
42
43
44
45
46
47
ENV="dev"
MONGODB_URI=mongodb://localhost:27017
# FastAPI backend reachable from the nextjs frontend
NEXT_PUBLIC_FASTAPI_FRONTEND_URL="http://localhost:8000"
# FastAPI backend reachable from the nextjs backend
# FastAPI backend root path
FASTAPI_ROOT_PATH="/"
# Worker settings
N_DOCROUTER_WORKERS=25
N_UVICORN_WORKERS=1
# Create an admin user
ADMIN_EMAIL="admin@yourcompany.com"
ADMIN_PASSWORD="admin"
# Set up API credentials for various services.
# These can also be set up later in the GUI.
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_S3_BUCKET_NAME=
OPENAI_API_KEY=
GEMINI_API_KEY=
ANTHROPIC_API_KEY=
GROQ_API_KEY=
MISTRAL_API_KEY=
# NextJS frontend
NEXTAUTH_URL="http://localhost:3000"
NEXTAUTH_SECRET=your-nextauth-secret
# Github OAuth
AUTH_GITHUB_ID=
AUTH_GITHUB_SECRET=
# Google OAuth
AUTH_GOOGLE_ID=
AUTH_GOOGLE_SECRET=
# Email verification
SES_FROM_EMAIL=
# Stripe
STRIPE_SECRET_KEY=sk_test_...
STRIPE_PUBLISHABLE_KEY=pk_test_...
STRIPE_WEBHOOK_SECRET=whsec_...