Is there a way to test my app locally without secrets.toml?

I’m trying to present my app quickly. However, I read the documentation that says I need to create the following and place it in the root folder before I can deploy locally.


and I’m still awaiting for my Sharing access.

I’m sorry, but i don’t understand your problem.

My problem is I don’t know how to properly text my app locally with streamlit without getting access to the page share.streamlit.io.
How do you run your app locally, Franky1?

streamlit run dec2020.py

If you aren’t going to use the secrets function of Streamlit sharing, then you don’t need to do anything to test your app. You can run it as you would run any streamlit app:

streamlit run app.py

If you are planning on using secrets management within Streamlit sharing (for example, to query against a database), then the documentation highlights how to set up your local Git repository with a secrets.toml file in the same way it will exist on Streamlit sharing. That way, when you do deploy the app, it should work (assuming you input the secrets through the web interface)

Best,
Randy