Secrets file

Is there something similar to Streamlit secrets file to manage sensetive data?
1 Reply
MaartenBreddels
MaartenBreddels7mo ago
There is nothing for that? Although I think that belongs more into the deploy story, not perse in solara. For instance, if you deploy using Ploomber or render.com, you'd put your secrets into their interface, and read them in as environment variables. Locally, you could use python-dotenv to read in these from your .env file, or just set them on the shell. Does that make sense?