A collection of Streamlit apps to explore potential features and replicate issues. The goal is to make it very easy to create and share reproducible examples. This repo is owned by the open-source team.
- Create a new folder in
issues
with this naming pattern:gh-<GITHUB_ISSUE_ID>
. - Create an
app.py
file in the created issue folder and use it to reproduce the issue. - Once the issue is added, it should be automatically accessible from the deployed issue explorer after a page refresh.
- Make sure to link the issue app in the respective issue on Github. Tip: Inside the
Issue Description
expander, you can find a markdown snippet that allows you to easily add a badge to the GitHub issue. Add this to the issue body in theSteps to reproduce
section.
The app might require a dedicated environment in some situations, e.g. requires specific dependencies, a different python version, or multipaging. In this case, just add a requirements.txt
or Pipfile
to the issue folder. This will require the app to run separately.
To run the issue explorer locally, execute in the repo root folder:
pipenv install --dev && pipenv run app
Some apps require a dedicated environment and need to be run separately.