What approach do folks use for ongoing evolution and debugging of published apps?
My approach has been to maintain two streamlit apps: main and test
The main streamlit app points to the main github repo
Test streamlit app points to the test branch
Enhancements and debugging happen on test. Then they are merged into main via a pull request.
It seems to work well enough for a single page streamlit app. For multi-page, it’s more cumbersome. Sometimes I’m want to push one page to production but not the other. Not really sure how to do that in github, or if it’s a good idea even if its possible.
Is there a better way?