-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
60 lines (47 loc) · 2.07 KB
/
env.example
File metadata and controls
60 lines (47 loc) · 2.07 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Lendora AI - Environment Variables Configuration
# Copy this file to .env and fill in your actual values
# ============================================================================
# Backend Configuration
# ============================================================================
# Server Configuration
PORT=8000
HOST=0.0.0.0
# Ollama Configuration (for AI agents)
OLLAMA_BASE_URL=http://localhost:11434
# Hydra Node Configuration
HYDRA_NODE_URL=ws://127.0.0.1:4001
HYDRA_MODE=auto
# Cardano Configuration
CARDANO_NETWORK=testnet
BLOCKFROST_PROJECT_ID=your_blockfrost_project_id_here
# Midnight Network Configuration
MIDNIGHT_API_URL=https://api.midnight.network
MIDNIGHT_API_KEY=your_midnight_api_key_here
# Credit Oracle Configuration
CREDIT_ORACLE_URL=https://api.credit-oracle.com
CREDIT_ORACLE_API_KEY=your_credit_oracle_api_key_here
# ============================================================================
# Docker Configuration (for docker-compose)
# ============================================================================
# Backend
BACKEND_PORT=8000
FRONTEND_PORT=80
OLLAMA_PORT=11434
# ============================================================================
# Vercel Configuration (for deployment)
# ============================================================================
# Frontend Environment Variables (set in Vercel dashboard for frontend deployment)
# VITE_API_URL=https://your-backend-url.vercel.app
# VITE_WS_URL=wss://your-backend-url.vercel.app
# To set these in Vercel:
# 1. Go to your Vercel project dashboard
# 2. Navigate to Settings > Environment Variables
# 3. Add the variables above (they will be available during build time)
# Backend environment variables (set in Vercel dashboard for backend deployment)
# OLLAMA_BASE_URL=http://localhost:11434 # Note: Ollama not available on Vercel
# HYDRA_NODE_URL=ws://127.0.0.1:4001 # Use external Hydra node
# HYDRA_MODE=auto
# MIDNIGHT_API_URL=https://api.midnight.network
# MIDNIGHT_API_KEY=your_midnight_api_key_here
# BLOCKFROST_PROJECT_ID=your_blockfrost_project_id_here
# CARDANO_NETWORK=testnet