Ente CLI Secrets
Ente CLI makes use of keyring for storing sensitive information like your passwords. And running the cli straight out of the box might give you some errors related to keyrings in some case.
Follow the below steps to run Ente CLI and also avoid keyrings errors.
- Create a secrets.txt file and save your user password inside it.
sh
# export the secrets path
export ENTE_CLI_SECRETS_PATH=./<path-to-secrets.txt>
./ente-cli
And you are good to go.
- You can also add the above line to your shell's rc file, to not having to export it manually every time.