-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from 0xsarwagya/main
CHORE : Added .env.example for examples
- Loading branch information
Showing
2 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# ------------------------------- | ||
# Ollama API Configuration | ||
# ------------------------------- | ||
|
||
# Base URL for the Ollama service used for embedding tasks. | ||
OLLAMA_BASE_URL="http://localhost:11434" | ||
|
||
# Model used by Ollama for general tasks. | ||
OLLAMA_MODEL_NAME="qwen2.5:1.5b" | ||
|
||
# Model used by Ollama specifically for embeddings. | ||
OLLAMA_EMBEDDING_MODEL_NAME="mxbai-embed-large" | ||
|
||
|
||
# ------------------------------- | ||
# Demo Mode Configuration | ||
# ------------------------------- | ||
|
||
# Set to "true" to enable demo mode in the application. | ||
NEXT_PUBLIC_IS_DEMO="true" | ||
|
||
|
||
# ------------------------------- | ||
# Supabase Configuration | ||
# ------------------------------- | ||
|
||
# URL of the Supabase instance used in the project. | ||
SUPABASE_URL="EXAMPLE_URL" | ||
|
||
# Private API key for accessing Supabase services. | ||
SUPABASE_PRIVATE_KEY="EXAMPLE_KEY" | ||
|
||
|
||
# ------------------------------- | ||
# Application URLs | ||
# ------------------------------- | ||
|
||
# Production URL for the application. | ||
NEXT_PUBLIC_URL_PROD="https://rag-demo.rebackk.xyz" | ||
|
||
# Development URL for local testing. | ||
NEXT_PUBLIC_URL_DEV="http://localhost:3000" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters