streamlit.config
configの確認:get_option
get_config_options
configの読み込み処理
優先順位
1. default values defined in this file
2. the global ~/.streamlit/config.toml file
3. per-project $CWD/.streamlit/config.toml files
4. environment variables such as STREAMLIT_SERVER_PORT
5. command line flags passed to streamlit run
environment variableの読み込みは_update_config_with_sensitive_env_var関数による
優先順位の1(default values defined in this file)は_create_option関数による
例:browser.gatherUsageStats
_update_config_with_sensitive_env_var
This should only be called from get_config_options.
sensitiveなoptionについて環境変数から値を読み込む
is_manually_set
Check if a given option was actually defined by the user.