-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
27 lines (22 loc) · 957 Bytes
/
env.example
File metadata and controls
27 lines (22 loc) · 957 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
# Notion .dotfiles 페이지 참조하기
# MongoDB 설정
# 실습장 PC일 경우
# MONGO_BASE_URI='http://username:changeme@192.168.0.123:27017' # 안될 경우 !를 %21로 변환
# MONGO_LOCAL_URI='http://username:changeme@192.168.0.123:27017'
# MONGO_REMOTE_URI='http://100.97.183.123:27017'
# 로컬 개발할 경우
MONGO_BASE_URI='http://username:changeme@localhost:27017/redfin?authSource=admin' # 안될 경우 !를 %21로 변환
MONGO_LOCAL_URI='http://username:changeme@localhost:27017/redfin?authSource=admin'
MONGO_REMOTE_URI='http://100.97.183.123:27017'
MONGO_DB=redfin
MONGO_COLLECTION=entries_with_body
# Elasticsearch 설정
ES_HOST='http://localhost:9200'
ES_USER=elastic
ES_PASSWORD=elastic
INDEX_NAME="article_recommender"
# Ollama 설정
OLLAMA_MODEL='ollama:gemma3:4b'
OLLAMA_BASE_URL='http://localhost:11434'
OLLAMA_SERVERS_LOCAL_BASE_URL='http://localhost:11434'
OLLAMA_SERVERS_REMOTE_BASE_URL='http://100.97.183.123:11434'