-
Notifications
You must be signed in to change notification settings - Fork 176
/
repology.conf.default
108 lines (96 loc) · 2.58 KB
/
repology.conf.default
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#
# Repology updater default configuration
#
# This file contains default values for all Repology updater
# settings. You may override them in `repology.conf` file,
# any other file specifying path to it in REPOLOGY_CONF environment
# variable, or in repology-update.py command line arguments.
#
# Since this file is managed by git, you're advised to not
# change values for your local setup here. Instead, override them
# in `repology.conf`
#
# Postgresql database connect string
#
# Used by repology-update and repology-app
# Overridable via --dsn command line arg
#
DSN = "dbname=repology user=repology password=repology"
#
# Directory to store repository data in
#
# Used in repology-update and repology-dump
# Overridable via --statedir command line arg
#
STATE_DIR = "_state"
#
# Directory to store parsed repository data in
#
# Used in repology-update and repology-dump
# Overridable via --parseddir command line arg
#
PARSED_DIR = "_parsed"
#
# Path to directory containing repository configuration YAML files
#
# Used by repology-update, repology-app, repology-dump
# Overridable via --repos-dir command line arg
#
REPOS_DIR = "repos.d"
#
# Path to directory containing package transformation rules YAML files
#
# Used by repology-update
# Overridable via --rules-dir command line arg
#
RULES_DIR = "rules.d"
#
# Path to directory for caching parsed configs
#
# Used by repology-update
# Overridable via --config-cache command line arg
#
CONFIG_CACHE_DIR = None
#
# Path to directory containing SQL queries
#
# Use by repology-update and repology-app
# Overridable with --sql-dir command line arg
#
SQL_DIR = "sql.d"
#
# Array of repository names or tags to work with
#
# Used by repology-update and repology-dump
# Overridable via free command line args
#
REPOSITORIES = ['production']
#
# Enable safety checks, such as check for minimal package count
#
# Used by repology-update
# Overridable via free command line args
#
ENABLE_SAFETY_CHECKS = True
#
# Address of repology instance this updater is related to
#
# For instance, it's used in repository fetcher User-Agent
#
REPOLOGY_HOME = 'https://repology.org'
#
# Point of time before which all history times are treated
# as unreliable
#
# When a new instance is initialized, historical data (such
# as information on known software releases) is initialized
# with current time, and it is not accurate because releases
# actually appeared in the past. Set this to unix time after
# the first instance update to make such unreliable timestamps
# ignored
#
HISTORY_CUTOFF_TIMESTAMP = 0
#
# Path to maintainers.yaml config
#
MAINTAINERS_CONFIG = 'maintainers.yaml'