Home

horcrux @main - refs - log -
-
https://git.jolheiser.com/horcrux.git
Split your source across forges
horcrux / horcrux.libsonnet
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
{
  Forge(name, username, tokenFile, repo, apiURL=''):: {
    name: name,
    username: username,
    tokenFile: tokenFile,
    repoName: repo,
    apiURL: apiURL,
  },
  GitHub(username, tokenFile, repo, apiURL='https://api.github.com'):: self.Forge('github', username, tokenFile, repo, apiURL),
  GitLab(username, tokenFile, repo, apiURL='https://gitlab.com/api/v4'):: self.Forge('gitlab', username, tokenFile, repo, apiURL),
  Gitea(username, tokenFile, repo, apiURL='https://gitea.com/api/v1'):: self.Forge('gitea', username, tokenFile, repo, apiURL),
  SourceHut(username, tokenFile, repo, apiURL='https://git.sr.ht/api'):: self.Forge('sourcehut', username, tokenFile, repo, apiURL),
  Codeberg(username, tokenFile, repo, apiURL='https://codeberg.org/api/v1'):: self.Forge('gitea', username, tokenFile, repo, apiURL),
}