Skip to content

Commit

Permalink
🔧 Add required crypto env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
SAMIBETTAYEB committed Jun 22, 2021
1 parent 55b96f5 commit 35d6fef
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ process.env.PGUSER = process.env.POSTGRESQL_USER ||
process.env.PGPASSWORD = process.env.POSTGRESQL_PASSWORD ||
process.env.PGPASSWORD ||
'';
process.env.ENCRYPTION_HEX_KEY = process.env.ENCRYPTION_HEX_KEY || 'abcdef0123456789abcdef0123456789';
process.env.ENCRYPTION_HEX_IV = process.env.ENCRYPTION_HEX_IV || '0123456789abcdef0123456789abcdef';

config = {
host: process.env.PGHOST,
port: process.env.PGPORT,
Expand Down

0 comments on commit 35d6fef

Please sign in to comment.