-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy path.env.example
34 lines (27 loc) · 962 Bytes
/
.env.example
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
# Port for the Superglue server
GRAPHQL_PORT=3000
# Endpoint for the graphql api (used so the web dashboard knows where to find the server)
GRAPHQL_ENDPOINT=http://localhost:3000
# Port for the web dashboard
WEB_PORT=3001
# Authentication token for API access
AUTH_TOKEN=
# Datastore type (redis or memory or file)
DATASTORE_TYPE=file
# if file, the path to the datastore directory
STORAGE_DIR=/data
# if redis
REDIS_HOST=
REDIS_PORT=
REDIS_USERNAME=
REDIS_PASSWORD=
# Your OpenAI API key
OPENAI_API_KEY=sk-proj-1234567890
# OpenAI model to use. We recommend gpt-4o-2024-11-20
OPENAI_MODEL=gpt-4o-2024-11-20
# OpenAI model for schema generation. Should be a faster model than the general one.
SCHEMA_GENERATION_MODEL=gpt-4o-2024-11-20
# Optional: Set a custom OpenAI API URL (for self-hosted models or proxies)
OPENAI_API_BASE_URL=https://api.openai.com/v1
# Disable the welcome/onboarding screen for development
NEXT_PUBLIC_DISABLE_WELCOME_SCREEN=false