It is not safe to store password unencrypted, so this app uses bcrypt
encryption. There are several ways to encrypt your password.
Then the app will encrypt it for you.
On Linux encryption can be done with htpasswd
command:
htpasswd -nbBC 10 USER YourSecretPassword | sed 's/USER://'
There are online tools for bcrypt
encryption.