Added a "Basic Auth" login option when performing local development.
This is useful for developers who don't have access to create new Azure AD or Github identity providers (e.g. App Registrations).
The Basic Auth will only appear in dev (process.env.NODE_ENV === "development")
It doesn't do any validation of the password.
It creates a new user based on the username and setting the email to username@localhost. The email is hashed to create a unique userId.
Added a "Basic Auth" login option when performing local development. This is useful for developers who don't have access to create new Azure AD or Github identity providers (e.g. App Registrations).
The Basic Auth will only appear in dev (
process.env.NODE_ENV === "development"
)It doesn't do any validation of the password. It creates a new user based on the
username
and setting the email tousername@localhost
. The email is hashed to create a unique userId.Documentation updated as well.