We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5039738 + 8a6d815 commit 5b6ca1bCopy full SHA for 5b6ca1b
backend/setup.js
@@ -21,7 +21,7 @@ const setupDefaultUser = () => {
21
.then((row) => {
22
if (!row || !row.id) {
23
// Create a new user and set password
24
- const email = process.env.INITIAL_ADMIN_EMAIL || '[email protected]';
+ const email = (process.env.INITIAL_ADMIN_EMAIL || '[email protected]').toLowerCase();
25
const password = process.env.INITIAL_ADMIN_PASSWORD || 'changeme';
26
27
logger.info(`Creating a new user: ${email} with password: ${password}`);
0 commit comments