Skip to content

Commit d66e4e0

Browse files
author
David Lievrouw
committed
#3790 Attempt to make ci happy.
1 parent 1d19c29 commit d66e4e0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

backend/setup.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ const setupDefaultUser = () => {
2121
.then((row) => {
2222
if (!row.count) {
2323
// Create a new user and set password
24-
let email = process.env.INITIAL_ADMIN_EMAIL || 'admin@example.com';
24+
let email = process.env.INITIAL_ADMIN_EMAIL || 'admin@example.com';
2525
let password = process.env.INITIAL_ADMIN_PASSWORD || 'changeme';
26-
logger.info('Creating a new user: admin@example.com with password: changeme');
26+
27+
logger.info('Creating a new user: ' + email + ' with password: ' + password);
2728

2829
let data = {
2930
is_deleted: 0,

0 commit comments

Comments
 (0)