docs: add registry dockge and dashboard operations
All checks were successful
Build / test-and-image (push) Successful in 2m39s
All checks were successful
Build / test-and-image (push) Successful in 2m39s
This commit is contained in:
82
.env.example
82
.env.example
@@ -1,49 +1,49 @@
|
||||
# ============================================
|
||||
# Crucix Intelligence Engine — Configuration
|
||||
# ============================================
|
||||
# Copy this file to .env and fill in your keys.
|
||||
# Keys are optional — sources without keys degrade gracefully.
|
||||
#
|
||||
# IMPORTANT: Do NOT put comments on the same line as values.
|
||||
# Docker env_file treats inline comments as part of the value.
|
||||
# Intelligence Terminal / Crucix configuration
|
||||
# Copy to .env. Keep comments on separate lines; Docker env_file treats inline comments as values.
|
||||
|
||||
# === OSINT Source API Keys ===
|
||||
|
||||
# Federal Reserve Economic Data (free: fred.stlouisfed.org/docs/api)
|
||||
FRED_API_KEY=
|
||||
# NASA FIRMS fire data (free: firms.modaps.eosdis.nasa.gov/api)
|
||||
FIRMS_MAP_KEY=
|
||||
# Energy Information Administration (free: api.eia.gov/register)
|
||||
EIA_API_KEY=
|
||||
# Maritime AIS data (aisstream.io)
|
||||
AISSTREAM_API_KEY=
|
||||
# Armed Conflict Location & Event Data (acleddata.com/user/register)
|
||||
ACLED_EMAIL=
|
||||
# OAuth2 password grant (API keys deprecated Sept 2025)
|
||||
ACLED_PASSWORD=
|
||||
# Cloudflare Radar internet outages & traffic anomalies (free: dash.cloudflare.com/profile/api-tokens, Account Analytics Read)
|
||||
CLOUDFLARE_API_TOKEN=
|
||||
|
||||
# === Server Configuration ===
|
||||
|
||||
# Dashboard server port
|
||||
# Server
|
||||
PORT=3117
|
||||
# Auto-refresh interval (minutes)
|
||||
REFRESH_INTERVAL_MINUTES=15
|
||||
AUTO_OPEN_BROWSER=false
|
||||
STALE_DATA_MAX_AGE_MINUTES=60
|
||||
SWEEP_TOKEN=
|
||||
BRIEF_VERBOSITY=standard
|
||||
|
||||
# === LLM Layer (optional) ===
|
||||
# Enables AI-enhanced trade ideas and breaking news Telegram alerts.
|
||||
# Provider options: anthropic | openai | gemini | codex | openrouter | minimax | mistral | ollama | grok
|
||||
LLM_PROVIDER=
|
||||
# Not needed for codex (uses ~/.codex/auth.json) or ollama (local)
|
||||
# LLM layer
|
||||
# Providers: openrouter | openai-compatible | lmstudio | ollama | openai | anthropic | gemini | mistral | minimax | grok | codex
|
||||
LLM_PROVIDER=openrouter
|
||||
LLM_BASE_URL=https://openrouter.ai/api/v1
|
||||
LLM_API_KEY=
|
||||
# Optional override. Each provider has a sensible default:
|
||||
# anthropic: claude-sonnet-4-6 | openai: gpt-5.4 | gemini: gemini-3.1-pro | codex: gpt-5.3-codex | openrouter: openrouter/auto | minimax: MiniMax-M2.5 | ollama: llama3.1:8b | grok: grok-4-latest
|
||||
LLM_MODEL=
|
||||
# Ollama base URL (only needed if not using default http://localhost:11434)
|
||||
OLLAMA_BASE_URL=
|
||||
LLM_MODEL=openrouter/free
|
||||
LLM_TEMPERATURE=0.2
|
||||
LLM_MAX_TOKENS=2000
|
||||
LLM_TIMEOUT_MS=90000
|
||||
OPENROUTER_SITE_URL=https://git.wilkensxl.de/MrSphay/intelligence-terminal
|
||||
OPENROUTER_APP_NAME=Intelligence Terminal
|
||||
|
||||
# === Telegram Alerts (optional, requires LLM) ===
|
||||
# Create a bot via @BotFather, get chat ID via @userinfobot
|
||||
# Local OpenAI-compatible examples
|
||||
# LM Studio: LLM_PROVIDER=lmstudio, LLM_BASE_URL=http://host.docker.internal:1234/v1, LLM_MODEL=local-model
|
||||
# Ollama: LLM_PROVIDER=ollama, LLM_BASE_URL=http://host.docker.internal:11434, LLM_MODEL=llama3.1:8b
|
||||
# Generic: LLM_PROVIDER=openai-compatible, LLM_BASE_URL=http://host.docker.internal:8000/v1, LLM_MODEL=your-model
|
||||
|
||||
# Core OSINT / market source keys
|
||||
FRED_API_KEY=
|
||||
FIRMS_MAP_KEY=
|
||||
EIA_API_KEY=
|
||||
AISSTREAM_API_KEY=
|
||||
ACLED_EMAIL=
|
||||
ACLED_PASSWORD=
|
||||
CLOUDFLARE_API_TOKEN=
|
||||
BLS_API_KEY=
|
||||
|
||||
# Telegram bot and alerts
|
||||
TELEGRAM_BOT_TOKEN=
|
||||
TELEGRAM_CHAT_ID=
|
||||
TELEGRAM_POLL_INTERVAL=5000
|
||||
TELEGRAM_CHANNELS=
|
||||
|
||||
# Discord bot/webhook
|
||||
DISCORD_BOT_TOKEN=
|
||||
DISCORD_CHANNEL_ID=
|
||||
DISCORD_GUILD_ID=
|
||||
DISCORD_WEBHOOK_URL=
|
||||
|
||||
Reference in New Issue
Block a user