salim0986/graph-bug-ai
0
1# Docker Environment Configuration2# Copy this to .env and fill in your values3 4# Database Configuration (for docker-compose)5NEO4J_URI=neo4j://neo4j:76876NEO4J_USER=neo4j7NEO4J_PASSWORD=graphbug1238QDRANT_URL=http://qdrant:63339 10# Application Settings11ENVIRONMENT=production12LOG_LEVEL=INFO13TEMP_REPOS_DIR=/app/temp_repos14EMBEDDING_MODEL=all-MiniLM-L6-v215 16# GitHub App Credentials (REQUIRED - fill these in!)17GITHUB_APP_ID=260480718GITHUB_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----\nYOUR_PRIVATE_KEY_HERE\n-----END RSA PRIVATE KEY-----\n"19 20# CORS Origins (add your frontend URL)21ALLOWED_ORIGINS=http://localhost:3000,http://localhost:786022 23# Optional: Qdrant Cloud (if not using local Docker)24# QDRANT_API_KEY=your_qdrant_cloud_api_key25# QDRANT_URL=https://your-cluster.cloud.qdrant.io26 27# Optional: Neo4j Aura (if not using local Docker)28# NEO4J_URI=neo4j+s://your-instance.databases.neo4j.io29# NEO4J_USER=neo4j30# NEO4J_PASSWORD=your_password31 