-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample.config.json
39 lines (39 loc) · 1.36 KB
/
sample.config.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
{
"repos": {
"stable": {
"path": "/var/run/flat-manager/stable-repo",
"collection-id": "com.HavenoTwo.Stable",
"suggested-repo-name": "HavenoTwo-stable",
"runtime-repo-url": "https://dl.flathub.org/repo/flathub.flatpakrepo",
"gpg-key": "TODO: Add short Key ID here",
"hooks": {
"publish": [
"true"
],
"checks": {
"example-check": {
"command": [
"true"
],
"reviewable": true
}
}
},
"subsets": {
"all": {
"collection-id": "com.HavenoTwo.Stable",
"base-url": null
}
}
}
},
"base-url": "http://127.0.0.1:8080",
"host": "0.0.0.0",
"port": 8080,
"delay-update-secs": 10,
"database-url": "postgres://root:example@postgres:5432/repo",
"build-repo-base": "build-repo",
"build-gpg-key": "TODO: Add short Key ID here",
"gpg-homedir": "/root/.gnupg",
"secret": "TODO: Add secret here, you can generate one with `dd bs=256 count=1 if=/dev/random of=/dev/stdout | base64 -w 0`. Be careful of the trailing newline or escaping percent signs."
}