Skip to content

Commit

Permalink
Merge branch 'master' into LL-171
Browse files Browse the repository at this point in the history
  • Loading branch information
pogi7 committed Oct 24, 2023
2 parents 5418dd6 + 0682ab6 commit 4f00336
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/account/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

export let config = {
mongodb: {
username: process.env.USR ?? "username",
password: process.env.PSW ?? "password",
clustername: process.env.CLUS ?? "cluster",
database: process.env.DB ?? "test",
collection: process.env.COL ?? "collection"
username: process.env.USR ?? process.env.DEV_USR,
password: process.env.PSW ?? process.env.DEV_PSW,
clustername: process.env.CLUS ?? process.env.DEV_CLUS,
database: process.env.DB ?? process.env.DEV_DB,
collection: process.env.COL ?? process.env.DEV_COL
},
microservice: {
account: "account",
Expand Down

0 comments on commit 4f00336

Please sign in to comment.