forked from repology/repology-updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepology.conf.default
117 lines (101 loc) · 2.61 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
109
110
111
112
113
114
115
116
117
#
# Repology default configuration file
#
# These settings are used in web application and as defaults
# for all command line utilities. You may override them in
# repology.conf file in project root or in any custom file,
# as long as you set path to it in REPLOGY_CONF environment
# variable
############################################################################
# COMMON SETTINGS
############################################################################
#
# 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"
#
# Path to YAML file containing repository configuration
#
# Used by repology-update, repology-app, repology-dump
# Overridable via --repos-path command line arg
#
REPOS_DIR = "repos.d"
#
# Path to YAML file containing package transformation rules
#
# Used by repology-update
# Overridable via --rules-path command line arg
#
RULES_DIR = "rules.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']
############################################################################
# UPDATE SETTINGS
############################################################################
#
# Path to helpers directory
#
# Helpers are small programs or scripts used to parse repository
# data in different formats which are hard to parse directly from
# python
#
# Used by repology-update
#
HELPERS_DIR = "helpers"
#
# Path to tclsh
#
# tclsh is used to parse macports repository
#
# Used by repology-update
#
TCLSH = "tclsh"
############################################################################
# WEBAPP SETTINGS
############################################################################
#
# Secret key for flask, see
# http://flask.pocoo.org/docs/0.12/api/#flask.Flask.secret_key
#
# There's no default value, please set it to some random string
#
#SECRET_KEY = ''
#
# Enable webapp profiling
#
PROFILE = False
#
# Items per page
#
METAPACKAGES_PER_PAGE = 200
MAINTAINERS_PER_PAGE = 500
PROBLEMS_PER_PAGE = 500
#
# Max reports for metapackage
#
MAX_REPORTS = 20
#
# Address of repology.org to use in HTML links
#
REPOLOGY_HOME = 'https://repology.org'
#
# AFK times when reports cannot be processed, to be reported to users
# array of strings in 'YYYY-MM-DD' (single date) or 'YYYY-MM-DD
# YYYY-MM-DD' (date interval) format
#
STAFF_AFK = []