mirror of
https://github.com/langgenius/dify.git
synced 2026-02-03 09:57:22 +00:00
12 lines
440 B
Plaintext
12 lines
440 B
Plaintext
|
|
// Switch to the %SYS namespace to modify system settings
|
|||
|
|
set $namespace="%SYS"
|
|||
|
|
|
|||
|
|
// Set predefined user passwords to never expire (default password: SYS)
|
|||
|
|
Do ##class(Security.Users).UnExpireUserPasswords("*")
|
|||
|
|
|
|||
|
|
// Change the default password
|
|||
|
|
Do $SYSTEM.Security.ChangePassword("_SYSTEM","Dify@1234")
|
|||
|
|
|
|||
|
|
// Install the Japanese locale (default is English since the container is Ubuntu-based)
|
|||
|
|
// Do ##class(Config.NLS.Locales).Install("jpuw")
|