aboutsummaryrefslogtreecommitdiff
path: root/kube/aeacus/x/within.website/configmap.yaml
blob: e7da5b519e9436bc989226966e6b189f3d711250 (plain)
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
apiVersion: v1
kind: ConfigMap
metadata:
  name: within-website
data:
  "config.ts": |
    export interface Repo {
        kind: "gitea" | "github";
        domain: string;
        user: string;
        repo: string;
        description: string;
    }

    const githubRepo = (name: string, description: string): Repo => {
      return {
        kind: "github",
        domain: "github.com",
        user: "Xe",
        repo: name,
        description,
      };
    };

    const giteaRepo = (name: string, description: string): Repo => {
      return {
        kind: "gitea",
        domain: "tulpa.dev",
        user: "cadey",
        repo: name,
        description,
      };
    };

    const repos: Repo[] = [
    githubRepo("derpigo", "A Derpibooru/Furbooru API client in Go. This is used to monitor Derpibooru/Furbooru for images by artists I care about and archive them."),
    githubRepo("eclier", "A command router for Go programs that implements every command in Lua. This was an experiment for making extensible command-line applications with Lua for extending them."),
    githubRepo("gcss", "A CSS preprocessor for Go. This is a legacy Go package that I am bringing forward to modern Go standards."),
    giteaRepo("gopher", "A Gopher (RFC 1436) client/server stack for Go applications. This allows users to write custom Gopher clients and servers."),
    githubRepo("ln", "The natural log function for Go: an easy package for structured logging. This is the logging stack that I use for most of my personal projects."),
    githubRepo("x", "Various experimental things. /x/ is my monorepo of side projects, hobby programming, and other explorations of how programming in Go can be."),
    ];

    export default repos;