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.
1 parent 54d463a commit 8a6d815Copy full SHA for 8a6d815
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