Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

github-search-rss

Deploy with Github Pages

  1. azu/github-search-rss → Fork → Copy the main branch only (Off) → Create fork.
  2. Fork repo → Actions → Enable.
  3. Settings → Pages → Build and deployment → Branch → gh-pages, /(root) → Save.
  4. Edit BASE_URL, SEARCH_ITEMS in src/RSS.ts:
    const BASE_URL = "https://<user>.github.io/github-search-rss";
    export const SEARCH_ITEMS: RSSItem[] = [
         // For example
        {
            title: "goldendict",
            query: "goldendict sort:updated-desc",
            TYPE: "REPOSITORY",
            link: `${BASE_URL}/goldendict.json`
        },
        {
            title: "keypirinha",
            query: "keypirinha sort:updated-desc",
            TYPE: "REPOSITORY",
            link: `${BASE_URL}/keypirinha-repo.json`
        }
    ];
    
  5. Commit changes... → Commit changes.
  6. Wait for actions to run. Then visit https://<user>.github.io/github-search-rss/.