-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
102 lines (84 loc) · 2.85 KB
/
.env.example
File metadata and controls
102 lines (84 loc) · 2.85 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# ===========================================
# VibecastAI Environment Configuration
# ===========================================
# ===========================================
# Application
# ===========================================
NODE_ENV=development
# ===========================================
# Web App (Next.js)
# ===========================================
NEXT_PUBLIC_API_URL=http://localhost:4000
NEXT_PUBLIC_WS_URL=ws://localhost:4000
NEXT_PUBLIC_MCP_URL=http://localhost:4000/api/mcp
# ===========================================
# API Server
# ===========================================
PORT=4000
HOST=0.0.0.0
CORS_ORIGIN=http://localhost:3000
# ===========================================
# Database
# ===========================================
DATABASE_URL=postgresql://vibecast:vibecast123@localhost:5432/vibecast
# ===========================================
# Redis
# ===========================================
REDIS_URL=redis://:vibecast123@localhost:6379
# ===========================================
# RabbitMQ
# ===========================================
RABBITMQ_URL=amqp://vibecast:vibecast123@localhost:5672
# ===========================================
# Qdrant Vector Database
# ===========================================
QDRANT_URL=http://localhost:6333
# ===========================================
# Neo4j Knowledge Graph
# ===========================================
NEO4J_URL=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=vibecast123
# ===========================================
# Meilisearch
# ===========================================
MEILISEARCH_URL=http://localhost:7700
MEILISEARCH_KEY=masterKey
# ===========================================
# Authentication (Logto)
# ===========================================
LOGTO_ENDPOINT=http://localhost:3001
LOGTO_APP_ID=vibecast-app
LOGTO_APP_SECRET=your-app-secret-here
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=your-nextauth-secret-here-change-in-production
# ===========================================
# AI Services
# ===========================================
# HuggingFace API (for NLP models)
HUGGINGFACE_API_KEY=your-huggingface-api-key-here
# OpenRouter API (for multi-LLM routing)
OPENROUTER_API_KEY=your-openrouter-api-key-here
# Claude Flow
AGENTDB_ENABLED=true
CLAUDE_FLOW_ENABLED=true
# ===========================================
# External APIs (Optional)
# ===========================================
# NewsAPI for news aggregation
NEWS_API_KEY=
# Twitter API for social media research
TWITTER_API_KEY=
TWITTER_API_SECRET=
# Reddit API for social media research
REDDIT_CLIENT_ID=
REDDIT_CLIENT_SECRET=
# ===========================================
# Monitoring & Analytics
# ===========================================
SENTRY_DSN=
PLAUSIBLE_API_KEY=
# ===========================================
# Development
# ===========================================
LOG_LEVEL=info