-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (32 loc) · 718 Bytes
/
.env.example
File metadata and controls
38 lines (32 loc) · 718 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
28
29
30
31
32
33
34
35
36
37
38
# App
NODE_ENV=development
PORT=3000
# Database
DB_HOST=localhost
DB_PORT=3306
DB_USERNAME=root
DB_PASSWORD=root
DB_NAME=task_manager
# JWT Auth
JWT_SECRET=Ih@op@th%is$159@
JWT_EXPIRES_IN=1h
JWT_REFRESH_SECRET=op@ths$159@%is$159
JWT_REFRESH_EXPIRES_IN=7d
# Redis Cache
REDIS_HOST=localhost
REDIS_PORT=6379
# Qdrant Vector Database
QDRANT_HOST=localhost
QDRANT_PORT=6333
QDRANT_HTTPS=false
QDRANT_TIMEOUT=30000
QDRANT_COLLECTION_NAME=task_manager
QDRANT_VECTOR_SIZE=768
# QDRANT_API_KEY= # Optional, for production
# Ollama API
OLLAMA_API_URL=http://localhost:11434
OLLAMA_EMBEDDING_MODEL=nomic-embed-text
OLLAMA_LLM_MODEL=llama3.2:3b
OLLAMA_FAST_LLM_MODEL=llama3.2:3b
# Use OpenAI instead of Ollama
USE_OPENAI=0