-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (16 loc) · 737 Bytes
/
Copy path.env.example
File metadata and controls
21 lines (16 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Neo4j Database Configuration
NEO4J_URI=neo4j+s://your-database.databases.neo4j.io
NEO4J_USERNAME=neo4j
NEO4J_PASSWORD=your-neo4j-password
# OpenAI API Key (if used)
OAI_SECRET=sk-your-openai-api-key
# DUAL API KEY SYSTEM FOR GPT ORCHESTRATION
# Public API Key - For read-only operations (MindRead GPT)
# Used by /api/execute-query endpoint - allows MATCH, RETURN, etc. only
PUBLIC_API_KEY=your-public-api-key-here
# Admin API Key - For full read/write operations (MindRoot GPT)
# Used by /api/admin-query endpoint - allows CREATE, MERGE, DELETE, etc.
ADMIN_API_KEY=your-admin-api-key-here
# Legacy API Key (for backward compatibility)
# Will be used as PUBLIC_API_KEY if PUBLIC_API_KEY is not set
API_KEY=your-legacy-api-key-here