-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
executable file
·58 lines (47 loc) · 1.53 KB
/
Copy path.env.example
File metadata and controls
executable file
·58 lines (47 loc) · 1.53 KB
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
52
53
54
55
56
57
58
# local
MONGO_PORT=27017 # default port
DERZIS_MNG_PORT=60003
CARDEA_PORT=60004
FUSEKI_PORT=3030 # default port
MONGO_HOST="localhost"
DERZIS_MNG_HOST="localhost"
CARDEA_HOST="localhost"
FUSEKI_HOST="localhost"
CARDEA_DB_NAME=crd-env
DERZIS_MNG_DB_NAME=drz-mng-env
DERZIS_MNG_API_PATH=/api
PUBLIC_MODE_TAG="crd-local"
# docker compose
DC_MONGO_PORT=60001
DC_REDIS_PORT=60002
DC_DERZIS_MNG_PORT=60003
DC_CARDEA_PORT=60004
DC_FUSEKI_PORT=60005
DC_MONGO_HOST="database"
DC_DERZIS_MNG_HOST="derzis-mng"
DC_CARDEA_HOST="cardea"
DC_FUSEKI_HOST="fuseki"
DC_REDIS_HOST="pubsub"
DC_CARDEA_DB_NAME=crd-dc-ex
DC_DERZIS_MNG_DB_NAME=drz-mng-crd-dc-ex
DC_DERZIS_WRK_DB_NAME=drz-wrk-crd-dc-ex
DC_DERZIS_MNG_API_PATH=/api
DC_MODE_TAG="crd-dc"
#
MAILTRAP_API_TOKEN=your_mailtrap_api_token_here
LOG_LEVEL=silly
# IAEDU
IAEDU_API_URL=your_iaedu_api_url_here
IAEDU_API_KEY=your_iaedu_api_key_here
IAEDU_CHANNEL_ID=your_iaedu_channel_id_here
# Multi-LLM Semantic Similarity API Keys
ANTHROPIC_API_KEY=your_anthropic_api_key_here # Anthropic Claude (claude-3-5-haiku)
OPENAI_API_KEY=your_openai_api_key_here # OpenAI (gpt-4o-mini)
MISTRAL_API_KEY=your_mistral_api_key_here # Mistral AI (mistral-small-latest)
GOOGLE_API_KEY=your_google_api_key_here # Google Gemini (gemini-1.5-flash)
# Meta root for subgraph explore when seeds have multiple roots
PUBLIC_EXPLORE_META_ROOT_URL=http://cardea.example.org/meta-root
PUBLIC_EXPLORE_META_ROOT_PREDICATE=http://cardea.example.org/meta-root-predicate
# Predicate direction neutral zone
PRED_BF_NEUTRAL_MIN=0.9
PRED_BF_NEUTRAL_MAX=1.1