-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy path.env.native.example
29 lines (22 loc) · 1.2 KB
/
.env.native.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
IL_UI_DEPLOYMENT=native
IL_UI_ADMIN_USERNAME=admin
IL_UI_ADMIN_PASSWORD=password
NEXTAUTH_SECRET=your_super_secret_random_string
NEXTAUTH_URL=http://localhost:3000
# (Optional) Enable this option if you want to enable UI features that helps in development, such as form Auto-Fill feature.
# Default: false
IL_ENABLE_DEV_MODE=false
# (Optional) Enable document conversion. Any non-markdown file will be converted to markdown file
# Default: false
IL_ENABLE_DOC_CONVERSION=false
# (Optional) Document conversion requires docling service to convert the documents.
# Uncomment and fill in the http://host:port where docling service is running.
# By default it assuming docling service is running on local host listening on port 5001
# IL_FILE_CONVERSION_SERVICE=http://localhost:5001
# (Required) Set to the parent directory where taxonomy repo is cloned.
NEXT_PUBLIC_TAXONOMY_ROOT_DIR=
# (Optional)Enable experiment features like synthetic data generation, training, and chat evaluation.
NEXT_PUBLIC_EXPERIMENTAL_FEATURES=false
# (Optional) Uncomment and point to the URL the api-server is running on. Native mode only and needs
# to be running on the same host as the UI.
# NEXT_PUBLIC_API_SERVER=http://localhost:8080