-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.sample
More file actions
24 lines (20 loc) · 768 Bytes
/
.env.sample
File metadata and controls
24 lines (20 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Neo4j Connection Credentials for Embedding Load Test
# These are loaded into Databricks secrets by setup_secrets.sh
#
# Usage:
# 1. Copy this file to .env: cp .env.sample .env
# 2. Fill in your Neo4j credentials
# 3. Run setup_secrets.sh to push to Databricks
# Neo4j host (without protocol prefix)
# For Aura: your-instance.databases.neo4j.io
# For self-hosted: hostname or IP address
NEO4J_HOST=your-instance.databases.neo4j.io
# Neo4j credentials
NEO4J_USER=neo4j
NEO4J_PASSWORD=your-password-here
# Neo4j database name (optional, defaults to "neo4j")
NEO4J_DATABASE=neo4j
# Connection protocol (optional, defaults to "neo4j+s" for Aura)
# Use "neo4j+s" for Aura (TLS required)
# Use "bolt" or "neo4j" for self-hosted without TLS
NEO4J_PROTOCOL=neo4j+s