Thanks for the link to the blog post. After reading it I am still not quite clear on the difference between using st.secrets dict and โ the root-level secrets (which) are also accessible as environment variablesโ - as I understand it the values in st.secrets dict are also available as environment variables?
For context I usually use environment variables for secrets e.g. in docker or githhub actions
Either method will pass the secret securely to your app. Using the dict provides some shortcuts for common use cases (such as username and password secrets pairs), as described here.