-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml.example
41 lines (34 loc) · 973 Bytes
/
config.yaml.example
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
41
# Default Settings:
#
# token: string, GitHub access token
# backupPath: string, path where to backup
# cloneViaSSH: boolean, whether to clone via SSH or HTTPS
default:
# INFO, WARNING, ERROR, (DEBUG)
loglevel: INFO
token: HERE_COMES_A_TOKEN
backupPath: /path/to/backup/location
cloneViaSSH: true
ssh-key: path/to/some/id_sshkey
# Tracker Settings
#
# trackDB: string, path for the tracker database file
tracker:
trackDB: /path/to/sqlite.db
trackRepositories: true
trackAbandonedBranches: true
deleteAbandonedBranchesAfter: 90d
deleteRemovedRepositoriesAfter: 90d
deleteRemovedBranchesAfter: 90d
deleteOrphanedOrganizationsAfter: 90d
warnBeforeRepositoryDeletion: 15d
warnBeforeOrphanedOrganizationDeletion: 15d
# Organizations Settings
# What organizations to backup
organizations:
organization1:
enabled: true
organization2:
enabled: true
organization3:
enabled: false