-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
40 lines (38 loc) · 1.26 KB
/
config.toml
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
[config]
# PostgreSQL connection string
db_pgconn = "postgresql://localhost/packages"
# Use for package change notifier, set to null to disable it
# If you don't use this feature, disabling it could improve performance
change_notifier = "redis://127.0.0.1/"
# Path to repository
path = "/mirror/debs"
# Auto-discover branches
discover = true
# Brand name
origin = "AOSC"
# Force-refresh interval (in days)
ttl = 14
# Label name
label = "AOSC OS"
# Code name
codename = "Hotfix"
# Signing private key file (the certificate must include a signing (sub-)key)
# If your secret key is not a file (because it is on a smartcard or hardware token):
# Please export its public key using `gpg` and uncomment then edit the line below
# certificate = "gpg:///etc/p-vector/sign.pubkey"
certificate = "/etc/p-vector/sign.key"
# Enable abbs data sync (AOSC-specific, also deprecated)
abbs_sync = false
# Include extra files in the `dist` folder
# This can be useful if you run other add-on services using an APT repository
# extra_dist_files = "/var/cache/p-vector/extra-dists/"
[[branch]]
# Branch name
name = "stable"
# Branch description
desc = "AOSC OS Repository - Stable"
[[branch]]
name = "testing"
desc = "AOSC OS Repository - Testing"
# Branch-specific force-refresh interval (7 days)
ttl = 7