.env.exampleā¢713 B
# MCP Brain Service Environment Configuration
# Copy to .env and fill with real values. Do NOT commit real secrets.
# Application Settings
PORT=8002
ENVIRONMENT=production
# CORS Configuration - Comma-separated list of allowed origins
CORS_ORIGINS=http://localhost:3010,https://auto-movie.ngrok.pro,https://auto-movie.ft.tc
# Neo4j Database Configuration
# The Python driver expects bolt/neo4j scheme, NOT https
# If your host supports Bolt routing, use neo4j:// or bolt:// (port 7687)
NEO4J_URI=neo4j://neo4j.ft.tc:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=your_neo4j_password
# Jina AI Configuration
JINA_API_KEY=your_jina_api_key_here
JINA_MODEL_NAME=jina-embeddings-v3
# Logging Configuration
LOG_LEVEL=INFO