Skip to content

Commit a5e3312

Browse files
committed
feat: update variable
1 parent e21fa46 commit a5e3312

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
NEO4J_URI=neo4j://localhost
22
NEO4J_USERNAME=neo4j
3-
NEO4j_PASSWORD=
3+
NEO4J_PASSWORD=

src/neo4j.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function getDriver(): Driver {
99
const uri = Deno.env.get("NEO4J_URI");
1010
const username = Deno.env.get("NEO4J_USERNAME");
1111
const password = Deno.env.get("NEO4J_PASSWORD") ||
12-
Deno.env.get("NEO4j_PASSWORD");
12+
Deno.env.get("NEO4J_PASSWORD");
1313

1414
if (!uri || !username || !password) {
1515
throw new Error("Missing Neo4j connection environment variables");

0 commit comments

Comments
 (0)