From c80281161c855c8f9ad60b6312fc1d09e7825505 Mon Sep 17 00:00:00 2001 From: Dionysus Date: Thu, 16 Jan 2025 06:47:28 +0000 Subject: [PATCH] Add .env.example --- .env.example | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..4e036b7 --- /dev/null +++ b/.env.example @@ -0,0 +1,18 @@ +# Elasticsearch configuration +ES_HOST=localhost +ES_PORT=9200 +ES_USERNAME=elastic +ES_PASSWORD=your_password +ES_USE_SSL=true +ES_VERIFY_CERTS=true +ES_CA_CERT_PATH=/path/to/ca.crt + +# Ollama configuration +OLLAMA_HOST=localhost +OLLAMA_PORT=11434 +OLLAMA_MODEL=llama2 + +# ChromaDB configuration +CHROMADB_HOST=localhost +CHROMADB_PORT=8000 +CHROMADB_PERSISTENCE_DIR=./chroma_storage \ No newline at end of file