Branch

readme changes

Mon Sep 29 2025

tucker <tucker@pangolin.lan>


    

2a0989f9bdb909ab012ed5a3616c4ef34f75aff0

Side-by-side
Stacked
README.md:11
Before
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
2. An 11ty website set up. You'll need to mmake a couple of additions to your eleventy config file.
   This is not (yet) on npm. You can install it straight from this git repository, though.
2. Add this plugin to your eleventy config.
+import repoViewer from 'eleventy-repo-viewer'

export default (eleventyConfig) => {
  eleventyConfig.addPlugin(repoViewer, {
    repos: {
      "My Cool Project": {
        _type: "git",
        location: "/home/me/code/cool-project",
        defaultBranch: 'main',
        branchesToPull: ['main', 'develop'],
      },
    },
    path: "/repos",
    baseUrl: "https://example.com",
  })
}
3. Edit `reposConfig.ts` to describe the repositories that you want to show on your site.
See below for a more detailed description of the `reposConfig.ts` file.
After
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
2. An 11ty website set up. You'll need to make a couple of additions
   to your eleventy config file.
   This is not (yet) on npm. You can install it straight from this git
   repository, though.
2. Add this plugin to your eleventy config, giving it a repo configuration
   object that describes the name and location of the repositories that you
   want to display.
+ import repoViewer from 'eleventy-repo-viewer'

  export default (eleventyConfig) => {
+   eleventyConfig.addPlugin(repoViewer, {
+     repos: {
+       "My Cool Project": {
+         _type: "git",
+         location: "/home/me/code/cool-project",
+         defaultBranch: 'main',
+         branchesToPull: ['main', 'develop'],
+       },
+     },
+     path: "/repos",
+     baseUrl: "https://example.com",
+   })
  }