Skip to content

Latest commit

History

History
41 lines (30 loc) 路 1.57 KB

File metadata and controls

41 lines (30 loc) 路 1.57 KB

Streamlit public roadmap

The Streamlit roadmap is a Streamlit app itself 馃く!

The app reads roadmap data from the public streamlit/streamlit repository:

  • Open, dated milestones provide upcoming versions and target release dates.
  • Closed, dated milestones and their issues load lazily in a past-releases history.
  • The Planned milestone provides other near-term projects.
  • Open, non-draft pull requests labeled change:spec provide specs in review.
  • Issue captions use the generated open-issues summary CSV and are omitted when a generated summary is unavailable.
  • Issue title icons use an explicit mapping of every current feature: and area: label, with generic feature-request and bug icons as fallbacks.

GitHub data is cached globally for four hours. After expiry, Streamlit serves the cached roadmap while refreshing it in the background.

Run locally

Create the environment and install dependencies with uv:

uv venv
uv pip install -r requirements.txt
source .venv/bin/activate
streamlit run streamlit_app.py

The app can read this public data without authentication. For a higher GitHub API rate limit, add a token to .streamlit/secrets.toml (which is gitignored):

[github]
token = "your-github-token"

Check out the deployed app:

Open in Streamlit