Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 81dfaec

Browse files
committedSep 2, 2021
🔧 Add required crypto env variables
Signed-off-by: SAMI BETTAYEB <sami3639@gmail.com>
1 parent c1a2074 commit 81dfaec

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎test/init.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ process.env.PGUSER = process.env.POSTGRESQL_USER ||
2121
process.env.PGPASSWORD = process.env.POSTGRESQL_PASSWORD ||
2222
process.env.PGPASSWORD ||
2323
'';
24+
process.env.ENCRYPTION_HEX_KEY = process.env.ENCRYPTION_HEX_KEY || 'abcdef0123456789abcdef0123456789';
25+
process.env.ENCRYPTION_HEX_IV = process.env.ENCRYPTION_HEX_IV || '0123456789abcdef0123456789abcdef';
26+
2427
config = {
2528
host: process.env.PGHOST,
2629
port: process.env.PGPORT,

0 commit comments

Comments
 (0)
Please sign in to comment.