Server performance

Hello, I tried to find information about this in the streamlit community cloud documentation, but I couldn’t find it.
I’m interested in:

  • How many people can be on the site at the same time?
  • If it is not secret information, what configuration is provided for the deployed application?

Thank you in advance!

I don’t think there is a limit on that.

I guess it is the default unless you add a config.toml file. In any case you can show the configuration at runtime.

st.write(
    {name: option.value for name, option in st.config.get_config_options().items()}
)