1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-23 00:22:19 +01:00

docs: remove mention of admin name and email env vars (#8096)

https://github.com/Unleash/unleash/pull/7795 mistakenly included a
mention that these environment variables can be used:

- `UNLEASH_DEFAULT_ADMIN_NAME`
- `UNLEASH_DEFAULT_ADMIN_EMAIL`

However that's not really the case, since we decided to remove their
respective implementation before merging that PR.
This commit is contained in:
Nuno Góis 2024-09-05 09:27:54 +01:00 committed by GitHub
parent c2c865273e
commit ec417bf15e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 9 deletions

View File

@ -71,8 +71,6 @@ describe('Default admin initialization', () => {
const DEFAULT_ADMIN_PASSWORD = 'unleash4all';
const CUSTOM_ADMIN_USERNAME = 'custom-admin';
const CUSTOM_ADMIN_PASSWORD = 'custom-password';
const CUSTOM_ADMIN_NAME = 'Custom Admin';
const CUSTOM_ADMIN_EMAIL = 'custom-admin@getunleash.io';
let userService: UserService;
const sendGettingStartedMailMock = jest.fn();

View File

@ -36,13 +36,6 @@ If you'd like the default admin user to be created with a different username and
- `UNLEASH_DEFAULT_ADMIN_USERNAME`
- `UNLEASH_DEFAULT_ADMIN_PASSWORD`
Alternatively, you can provide a name and email address for the initial admin user:
- `UNLEASH_DEFAULT_ADMIN_NAME`
- `UNLEASH_DEFAULT_ADMIN_EMAIL`
Unleash will then create the admin account using the provided name and email address. Instead of setting an initial password during account creation, an email will be sent to the specified address with a link for the new admin user to securely set their password.
The way of defining these variables may vary depending on how you run Unleash.