-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy path.env.example
More file actions
29 lines (21 loc) · 809 Bytes
/
Copy path.env.example
File metadata and controls
29 lines (21 loc) · 809 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
# Octopoda Environment Variables
# ================================
# Copy this to .env and fill in your values.
# NEVER commit .env to git.
# PostgreSQL connection (app role — RLS enforced)
DATABASE_URL=postgresql://octopoda_app:YOUR_PASSWORD@your-db-host:16751/defaultdb?sslmode=require
# PostgreSQL admin connection (for migrations — bypasses RLS)
DATABASE_URL_ADMIN=postgresql://vultradmin:YOUR_PASSWORD@your-db-host:16751/defaultdb?sslmode=require
# Email verification (Resend.com)
RESEND_API_KEY=re_xxxxx
# Stripe billing (future)
STRIPE_SECRET_KEY=sk_xxxxx
# Embedding model
OCTOPODA_EMBEDDING_MODEL=BAAI/bge-small-en-v1.5
# LLM for fact extraction (optional)
OCTOPODA_LLM_PROVIDER=ollama
OCTOPODA_LLM_MODEL=llama3.2
# Backend type
SYNRIX_BACKEND=postgres
# Log level
SYNRIX_LOG_LEVEL=INFO