all repos — elgit @ 5ae6e6b8ba5bad8b7a981ac0db5f3974806be935

fork of legit: web frontend for git, written in go

rename to elgit
Alan Pearce alan@alanpearce.eu
Sat, 29 Mar 2025 20:54:11 +0100
commit

5ae6e6b8ba5bad8b7a981ac0db5f3974806be935

parent

8ed87caffe08bcd6487a7d585763d05d91634f44

M .gitignore.gitignore
@@ -1,2 +1,2 @@-legit
+elgit
 result
M contrib/Dockerfilecontrib/Dockerfile
@@ -6,7 +6,7 @@ COPY . . RUN go mod download
 RUN go mod verify
 
-RUN go build -o legit
+RUN go build -o elgit
 
 FROM scratch AS build-release-stage
 
@@ -15,8 +15,8 @@ COPY static ./static
 COPY templates ./templates
 COPY config.yaml ./
-COPY --from=builder /app/legit ./
+COPY --from=builder /app/elgit ./
 
 EXPOSE 5555
 
-CMD ["./legit"]
+CMD ["./elgit"]
M contrib/docker-compose.ymlcontrib/docker-compose.yml
@@ -1,6 +1,6 @@ services:
-  legit:
-    container_name: legit
+  elgit:
+    container_name: elgit
     build:
       context: ../
       dockerfile: contrib/Dockerfile
M contrib/legit.servicecontrib/elgit.service
@@ -1,12 +1,12 @@ [Unit]
-Description=legit Server
+Description=elgit Server
 After=network-online.target
 Requires=network-online.target
 
 [Service]
 User=git
 Group=git
-ExecStart=/usr/bin/legit -config /etc/legit/config.yaml
+ExecStart=/usr/bin/elgit -config /etc/elgit/config.yaml
 ProtectSystem=strict
 ProtectHome=strict
 NoNewPrivileges=true
M flake.lockflake.lock
@@ -2,11 +2,11 @@ {   "nodes": {
     "nixpkgs": {
       "locked": {
-        "lastModified": 1718558927,
-        "narHash": "sha256-PRqvkPqX5luuZ0WcUbz2zATGp4IzybDU0K33MxO9Sd0=",
+        "lastModified": 1743277699,
+        "narHash": "sha256-po7cvIuCN/gdwye1JMfCscbg6OF/jG5bYJ0uiRfhLb0=",
         "owner": "nixos",
         "repo": "nixpkgs",
-        "rev": "f82fe275d98c521c051af4892cd8b3406cee67a3",
+        "rev": "9a856c9bc78008593fc53688be81549c56547467",
         "type": "github"
       },
       "original": {
M flake.nixflake.nix
@@ -17,7 +17,7 @@ {       packages = forAllSystems (system:
         let
           pkgs = nixpkgsFor.${system};
-          legit = self.packages.${system}.legit;
+          elgit = self.packages.${system}.elgit;
           files = pkgs.lib.fileset.toSource {
             root = ./.;
             fileset = pkgs.lib.fileset.unions [
@@ -28,25 +28,25 @@ ];           };
         in
         {
-          legit = pkgs.buildGoModule {
-            name = "legit";
+          elgit = pkgs.buildGoModule {
+            name = "elgit";
             rev = "master";
             src = ./.;
 
             vendorHash = "sha256-ynv0pBdVPIhTz7RvCwVWr0vUWwfw+PEjFXs9PdQMqm8=";
           };
           docker = pkgs.dockerTools.buildLayeredImage {
-            name = "sini:5000/legit";
+            name = "sini:5000/elgit";
             tag = "latest";
-            contents = [ files legit pkgs.git ];
+            contents = [ files elgit pkgs.git ];
             config = {
-              Entrypoint = [ "${legit}/bin/legit" ];
+              Entrypoint = [ "${elgit}/bin/elgit" ];
               ExposedPorts = { "5555/tcp" = { }; };
             };
           };
         });
 
-      defaultPackage = forAllSystems (system: self.packages.${system}.legit);
+      defaultPackage = forAllSystems (system: self.packages.${system}.elgit);
       devShells = forAllSystems (system:
         let
           pkgs = nixpkgsFor.${system};
M go.modgo.mod
@@ -1,4 +1,4 @@-module git.icyphox.sh/legit
+module go.alanpearce.eu/elgit
 
 go 1.22.0
 
M licenselicense
@@ -1,6 +1,7 @@ The MIT License (MIT)
 
 Copyright (c) Anirudh Oppiliappan <x@icyphox.sh>
+Copyright (c) Alan Pearce <alan@alanpearce.eu>
 
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the
@@ -20,4 +21,3 @@ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
M main.gomain.go
@@ -6,8 +6,8 @@ "fmt" 	"log"
 	"net/http"
 
-	"git.icyphox.sh/legit/config"
-	"git.icyphox.sh/legit/routes"
+	"go.alanpearce.eu/elgit/config"
+	"go.alanpearce.eu/elgit/routes"
 )
 
 func main() {
M readmereadme
@@ -1,17 +1,11 @@-legit
+elgit
 -----
 
-A git web frontend written in Go.
-
-Pronounced however you like; I prefer channeling my inner beret-wearing
-Frenchman, and saying "Oui, il est le git!"
-
-But yeah it's pretty legit, no cap on god fr fr.
+A git web frontend written in Go, forked from elgit after the author moved on.
 
 
 FEATURES
 
-• Fully customizable templates and stylesheets.
 • Cloning over http(s).
 • Less archaic HTML.
 • Not CGI.
@@ -56,7 +50,7 @@ port: 5555 
 These options are fairly self-explanatory, but of note are:
 
-• repo.scanPath: where all your git repos live (or die). legit doesn't
+• repo.scanPath: where all your git repos live (or die). elgit doesn't
   traverse subdirs yet.
 • dirs: use this to override the default templates and static assets.
 • repo.readme: readme files to look for.
@@ -72,17 +66,17 @@ 
 NOTES
 
-• Run legit behind a TLS terminating proxy like relayd(8) or nginx.
+• Run elgit behind a TLS terminating proxy like relayd(8) or nginx.
 • Cloning only works in bare repos -- this is a limitation inherent to git. You
-  can still view non-bare repos just fine in legit.
+  can still view non-bare repos just fine in elgit.
 • Pushing over https, while supported, is disabled because auth is a
   pain. Use ssh.
 • Paths are unveil(2)'d on OpenBSD.
-• Docker images are available ghcr.io/icyphox/legit:{master,latest,vX.Y.Z}. [2]
+• Docker images are available ghcr.io/icyphox/elgit:{master,latest,vX.Y.Z}. [2]
 
 LICENSE
 
-legit is licensed under MIT.
+elgit is licensed under MIT.
 
 [1]: https://swapoff.org/chroma/playground/
-[2]: https://github.com/icyphox/legit/pkgs/container/legit
+[2]: https://github.com/icyphox/elgit/pkgs/container/elgit
M routes/git.goroutes/git.go
@@ -7,8 +7,8 @@ "log" 	"net/http"
 	"path/filepath"
 
-	"git.icyphox.sh/legit/git/service"
 	securejoin "github.com/cyphar/filepath-securejoin"
+	"go.alanpearce.eu/elgit/git/service"
 )
 
 func (d *deps) InfoRefs(w http.ResponseWriter, r *http.Request) {
M routes/handler.goroutes/handler.go
@@ -3,7 +3,7 @@ import (
 	"net/http"
 
-	"git.icyphox.sh/legit/config"
+	"go.alanpearce.eu/elgit/config"
 )
 
 // Checks for gitprotocol-http(5) specific smells; if found, passes
M routes/routes.goroutes/routes.go
@@ -13,12 +13,12 @@ "strconv" 	"strings"
 	"time"
 
-	"git.icyphox.sh/legit/config"
-	"git.icyphox.sh/legit/git"
 	securejoin "github.com/cyphar/filepath-securejoin"
 	"github.com/dustin/go-humanize"
 	"github.com/microcosm-cc/bluemonday"
 	"github.com/russross/blackfriday/v2"
+	"go.alanpearce.eu/elgit/config"
+	"go.alanpearce.eu/elgit/git"
 )
 
 type deps struct {
M routes/template.goroutes/template.go
@@ -9,10 +9,10 @@ "net/http" 	"path/filepath"
 	"strings"
 
-	"git.icyphox.sh/legit/git"
 	"github.com/alecthomas/chroma/v2/formatters/html"
 	"github.com/alecthomas/chroma/v2/lexers"
 	"github.com/alecthomas/chroma/v2/styles"
+	"go.alanpearce.eu/elgit/git"
 )
 
 func (d *deps) Write404(w http.ResponseWriter) {
@@ -72,7 +72,11 @@ } 	}
 }
 
-func (d *deps) showFileWithHighlight(name, content string, data map[string]any, w http.ResponseWriter) {
+func (d *deps) showFileWithHighlight(
+	name, content string,
+	data map[string]any,
+	w http.ResponseWriter,
+) {
 	tpath := filepath.Join(d.c.Dirs.Templates, "*")
 	t := template.Must(template.ParseGlob(tpath))
 
M routes/util.goroutes/util.go
@@ -8,7 +8,7 @@ "os" 	"path/filepath"
 	"strings"
 
-	"git.icyphox.sh/legit/git"
+	"go.alanpearce.eu/elgit/git"
 )
 
 func isGoModule(gr *git.GitRepo) bool {
@@ -101,7 +101,10 @@ return repos, err }
 
 func (d *deps) category(path string) string {
-	return strings.TrimPrefix(filepath.Dir(strings.TrimPrefix(path, d.c.Repo.ScanPath)), string(os.PathSeparator))
+	return strings.TrimPrefix(
+		filepath.Dir(strings.TrimPrefix(path, d.c.Repo.ScanPath)),
+		string(os.PathSeparator),
+	)
 }
 
 func setContentDisposition(w http.ResponseWriter, name string) {
M templates/head.htmltemplates/head.html
@@ -3,7 +3,7 @@ <head>     <meta charset="utf-8">
     <meta name="viewport" content="width=device-width, initial-scale=1">
     <link rel="stylesheet" href="/static/style.css" type="text/css">
-    <link rel="icon" type="image/png" sizes="32x32" href="/static/legit.png">
+    <link rel="icon" type="image/png" sizes="32x32" href="/static/elgit.png">
     {{ if .parent }}
     <title>{{ .meta.Title }} &mdash; {{ .name }} ({{ .ref }}): {{ .parent }}/</title>