Skip to content

Commit

Permalink
fix env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromtcosta committed Oct 11, 2022
1 parent 8495e33 commit 24099b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default {
network: process.env.NETWORK || "mainnet",
neo4j: {
url: process.env.NEO4J_URL || "neo4j://dus-01.emurgo-rnd.com:7687",
username: process.env.NEO4J_URL || "neo4j",
password: process.env.NEO4J_URL || "neo4j"
username: process.env.NEO4J_USERNAME || "neo4j",
password: process.env.NEO4J_PASSWORD || "neo4j"
}
};

0 comments on commit 24099b7

Please sign in to comment.