-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvanitygen.json
39 lines (39 loc) · 974 Bytes
/
vanitygen.json
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
{
"$schema": "https://raw.githubusercontent.com/Icikowski/vanitygen/main/config.schema.json",
"domain": "pkg.somesite.com",
"siteName": "Go packages",
"author": "John Doe",
"docs": "https://pkg.go.dev",
"pkgs": [
{
"name": "utils",
"provider": "github",
"repoUrl": "https://github.com/someuser/someutils",
"branch": "main",
"subpackages": [
"v1",
"v2",
"v3"
]
},
{
"name": "tools",
"provider": "gitlab",
"repoUrl": "https://gitlab.com/someuser/sometools",
"branch": "devel"
},
{
"name": "awesome",
"provider": "gitea",
"repoUrl": "https://try.gitea.io/someuser/some-awesome-package",
"branch": "staging",
"website": "https://somesite.com/my-awesome-package"
},
{
"name": "others",
"provider": "sourcehut",
"repoUrl": "https://git.sr.ht/~someuser/someotherpackage",
"branch": "master"
}
]
}