- apps/api: FastAPI backend with Dockerfile - apps/web: Next.js frontend with Dockerfile - apps/sensor: Signal collection agent - packages: shared packages Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
558 B
Plaintext
19 lines
558 B
Plaintext
# =============================================================================
|
|
# AWOOOI API Environment Configuration
|
|
# =============================================================================
|
|
# Copy this file to .env and fill in the values
|
|
|
|
# Telegram Gateway (Phase 5)
|
|
OPENCLAW_TG_BOT_TOKEN=your_bot_token_here
|
|
OPENCLAW_TG_CHAT_ID=your_chat_id_here
|
|
OPENCLAW_TG_USER_WHITELIST="user_id_1,user_id_2"
|
|
|
|
# Environment
|
|
ENVIRONMENT=dev
|
|
|
|
# Shadow Mode (Phase 5 - Safety First)
|
|
SHADOW_MODE_ENABLED=true
|
|
|
|
# Ollama (AI Engine)
|
|
OLLAMA_URL=http://127.0.0.1:11434
|