forked from i-dot-ai/scout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
53 lines (42 loc) · 1.04 KB
/
.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# === LLM ===
ANTHROPIC_API_KEY=""
AZURE_OPENAI_KEY=
AZURE_OPENAI_ENDPOINT=
AZURE_OPENAI_API_VERSION=2024-02-01
AZURE_OPENAI_CHAT_DEPLOYMENT_NAME=gpt-4o
TOKENIZERS_PARALLELISM=false
# === Frontend ===
REACT_APP_API_PORT=8080
API_PORT=8080
APP_PORT=3001
APP_URL='http://localhost:3001'
BACKEND_HOST='http://localhost:8080'
# === backend ===
DEV=true
PATH_TO_DATA='./.data/db_deploy'
API_JWT_KEY='your-secret-key'
REACT_APP_API_URL='http://localhost:8080/api'
# === postgres ===
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DB=ipa-scout
POSTGRES_USER=postgres
POSTGRES_PASSWORD=insecure
# === alembic ===
# Set to true to run the alembic migrations on build
RUN_MIGRATIONS=False
# === Minio ===
MINIO_HOST=minio
MINIO_PORT=9000
MINIO_ACCESS_KEY=minioadmin
MINIO_SECRET_KEY=minioadmin
BUCKET_NAME='scout-bucket'
# === Deployment ===
DOCKER_BUILDER_CONTAINER=ipa-scout
APP_NAME=ipa-scout
AWS_ACCOUNT_ID=REPLACE_ME
AWS_REGION=eu-west-2
S3_URL='http://localhost:9000'
ENVIRONMENT=local
# Libreoffice Service
LIBREOFFICE_SERVICE_URL=http://localhost:5000