#3790 Attempt to make ci happy.

This commit is contained in:
David Lievrouw 2024-06-03 13:44:08 +02:00
parent 1d19c29bb0
commit d66e4e03e6

View File

@ -21,9 +21,10 @@ const setupDefaultUser = () => {
.then((row) => {
if (!row.count) {
// Create a new user and set password
let email = process.env.INITIAL_ADMIN_EMAIL || 'admin@example.com';
let email = process.env.INITIAL_ADMIN_EMAIL || 'admin@example.com';
let password = process.env.INITIAL_ADMIN_PASSWORD || 'changeme';
logger.info('Creating a new user: admin@example.com with password: changeme');
logger.info('Creating a new user: ' + email + ' with password: ' + password);
let data = {
is_deleted: 0,