Files snapshot from branch-globs

./README.md

What Is This?

Eleventy Repo Viewer is a plugin for Eleventy that creates plain, static HTML pages for displaying a git repository. You can read code, browse commits, and clone the repository purely from plain old files on a web server. It's sort of like a read-only version of GitHub, and requires no logic on the backend whatsoever.

Installation and Setup

Prerequisites

  1. git, which you probably already have
  2. An 11ty website set up. You'll need to make a couple of additions to your eleventy config file.

Installation & Setup

  1. npm install this plugin

    This is not (yet) on npm. You can install it straight from this git repository, though. npm install --save git+http://repos.tuckerm.us/eleventy-repo-viewer.git#deploy/0.0.1-alpha.1

  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",
+   })
  }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
b0f62a Tucker McKnight
b0f62a Tucker McKnight
b0f62a Tucker McKnight
b0f62a Tucker McKnight
b0f62a Tucker McKnight
b0f62a Tucker McKnight
b0f62a Tucker McKnight
b0f62a Tucker McKnight
b0f62a Tucker McKnight
b0f62a Tucker McKnight
b0f62a Tucker McKnight
b0f62a Tucker McKnight
b0f62a Tucker McKnight
2a0989 tucker
2a0989 tucker
b0f62a tucker
b0f62a tucker
b0f62a tucker
b0f62a tucker
9aa969 Tucker McKnight
2a0989 Tucker McKnight
2a0989 Tucker McKnight
4bd0a4 tucker
b0f62a tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
b0f62a tucker
b0f62a tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
2a0989 tucker
b0f62a tucker
b0f62a tucker
# What Is This?

Eleventy Repo Viewer is a plugin for [Eleventy](https://11ty.dev) that creates
plain, static HTML pages for displaying a git repository. You can read code,
browse commits, and clone the repository purely from plain old files on
a web server. It's sort of like a read-only version of GitHub, and requires no logic
on the backend whatsoever.

# Installation and Setup

## Prerequisites

1. git, which you probably already have
2. An 11ty website set up. You'll need to make a couple of additions
   to your eleventy config file.

## Installation & Setup

1. npm install this plugin

   This is not (yet) on npm. You can install it straight from this git
   repository, though.
   `npm install --save git+http://repos.tuckerm.us/eleventy-repo-viewer.git#deploy/0.0.1-alpha.1`

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.

```diff-js
+ 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",
+   })
  }
```