aboutsummaryrefslogtreecommitdiff
path: root/cmd/within.website/config.ts
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2023-08-11 04:02:40 -0700
committerXe Iaso <me@xeiaso.net>2023-08-11 04:02:56 -0700
commitab469b10678483b8ad41bd994668eab2825ba514 (patch)
tree18c089a42f5da3884145b6c73301703e59cd2835 /cmd/within.website/config.ts
parent16f60b165a114d4c41581257b513665ea16e06f7 (diff)
downloadx-ab469b10678483b8ad41bd994668eab2825ba514.tar.xz
x-ab469b10678483b8ad41bd994668eab2825ba514.zip
cmd: add yeet for build automation
Diffstat (limited to 'cmd/within.website/config.ts')
-rw-r--r--cmd/within.website/config.ts37
1 files changed, 0 insertions, 37 deletions
diff --git a/cmd/within.website/config.ts b/cmd/within.website/config.ts
index e79434d..e69de29 100644
--- a/cmd/within.website/config.ts
+++ b/cmd/within.website/config.ts
@@ -1,37 +0,0 @@
-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."),
- 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;