Spaces:
No application file
No application file
Add safe .env.example with placeholders
Browse files- .env.example +23 -0
.env.example
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Neo4j Configuration
|
| 2 |
+
NEO4J_AUTH=neo4j/your_password
|
| 3 |
+
NEO4J_BOLT_URL=bolt://neo4j:7687
|
| 4 |
+
|
| 5 |
+
# PostgreSQL Configuration
|
| 6 |
+
POSTGRES_PASSWORD=your_postgres_password
|
| 7 |
+
POSTGRES_CONNECTION=postgresql://postgres:your_password@postgres:5432/your_db
|
| 8 |
+
|
| 9 |
+
# MCP Server Configuration
|
| 10 |
+
MCP_API_KEYS=your-api-key
|
| 11 |
+
MCP_PORT=8000
|
| 12 |
+
|
| 13 |
+
# Agent Configuration
|
| 14 |
+
AGENT_POLL_INTERVAL=30
|
| 15 |
+
PAUSE_DURATION=300
|
| 16 |
+
|
| 17 |
+
# LLM Configuration
|
| 18 |
+
LLM_API_KEY=your-llm-api-key
|
| 19 |
+
LLM_MODEL=gpt-4o
|
| 20 |
+
|
| 21 |
+
# Development Settings
|
| 22 |
+
COMPOSE_PROJECT_NAME=agent-mcp-sql
|
| 23 |
+
DOCKER_BUILDKIT=1
|