Skip to content

Commit

Permalink
normalize passwords for sql and couch2pg
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones-plip committed Apr 24, 2024
1 parent 84beee2 commit 2c5b324
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions development/fake-cht/src/postgres.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ const { Client } = require('pg');
const { randomUUID } = require('crypto');

const POSTGRES_CLIENT_CONFIG = {
user: 'postgres_root',
user: 'cht_couch2pg',
host: 'postgres',
database: 'cht',
password: 'postgres_root_password',
password: 'cht_couch2pg_password',
port: 5432,
};

Expand Down

0 comments on commit 2c5b324

Please sign in to comment.