There was an error while loading. Please reload this page.
1 parent e21fa46 commit a5e3312Copy full SHA for a5e3312
2 files changed
.env.example
@@ -1,3 +1,3 @@
1
NEO4J_URI=neo4j://localhost
2
NEO4J_USERNAME=neo4j
3
-NEO4j_PASSWORD=
+NEO4J_PASSWORD=
src/neo4j.ts
@@ -9,7 +9,7 @@ export function getDriver(): Driver {
9
const uri = Deno.env.get("NEO4J_URI");
10
const username = Deno.env.get("NEO4J_USERNAME");
11
const password = Deno.env.get("NEO4J_PASSWORD") ||
12
- Deno.env.get("NEO4j_PASSWORD");
+ Deno.env.get("NEO4J_PASSWORD");
13
14
if (!uri || !username || !password) {
15
throw new Error("Missing Neo4j connection environment variables");
0 commit comments