-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (30 loc) · 1.21 KB
/
.env.example
File metadata and controls
40 lines (30 loc) · 1.21 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
# SidStack Environment Configuration
# API Server
API_PORT=19432
NODE_ENV=development
# API Authentication (optional - skip auth if not set, backward compatible)
# SIDSTACK_API_KEY=your-secret-key-here
# CORS (comma-separated extra origins, added to built-in defaults)
# SIDSTACK_CORS_ORIGINS=https://your-app.example.com,https://staging.example.com
# Web UI (Vite)
VITE_API_URL=http://localhost:19432
# Database (SQLite)
# Default: ~/.sidstack/sidstack.db
# Set DATABASE_PATH for remote/Docker deployment
# DATABASE_PATH=/data/sidstack.db
# MCP Server / API Client URL (where consumers connect to the API server)
# Default: http://localhost:19432
# SIDSTACK_API_URL=http://localhost:19432
# === Production / Remote Server ===
# Uncomment and configure for remote deployment:
# SIDSTACK_API_URL=https://api.sidstack.dev
# SIDSTACK_API_KEY=sk-your-production-key
# MCP transport: change .mcp.json to streamable-http mode (see docs/QUICK_START.md)
# Logging
LOG_LEVEL=info
# mem0 Semantic Memory Server (optional - enables semantic search)
MEM0_API_URL=http://localhost:4321
# MEM0_API_KEY=
# LiteLLM Gateway (used by mem0 for LLM/embedding calls)
# Configure provider keys in docker/mem0/.env
# LITELLM_URL=http://localhost:4000