-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.sample
97 lines (85 loc) · 2.65 KB
/
.env.sample
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
#
# Set the following variables to GitHub repository links containing the relevant osu! code.
#
# Supported values:
# Repos: https://github.com/ppy/osu
# PRs: https://github.com/ppy/osu/pull/15845
# Trees: https://github.com/ppy/osu/tree/34b0e374d855cacde830c91b7251f74d499d1a1d
# Commits: https://github.com/ppy/osu/commit/34b0e374d855cacde830c91b7251f74d499d1a1d
# PR Commits: https://github.com/ppy/osu/pull/19120/commits/5f70ee3ed7b09042c737d99f67f326f3227b9776
#
OSU_A=https://github.com/ppy/osu
OSU_B=https://github.com/ppy/osu
#
# The ruleset for which to compute and output SR/PP.
#
# Supported values: [ osu, taiko, catch, mania ]
RULESET=osu
#
# Whether to output SR/PP for converts.
#
# Supported values: [ 0, 1 ]
NO_CONVERTS=0
#
# Whether to output SR/PP only for ranked beatmaps.
#
# Supported values: [ 0, 1 ]
RANKED_ONLY=0
#
# A comma-separated list of data that is to be output to the spreadsheet.
# The spreadsheet order depends on the order the generators are specified.
#
# Supported values: [ sr, pp, score ]
GENERATORS=pp,sr
#
# The sets of mods to include in the spreadsheet.
#
# +Acronym: Only scores with this mod are selected.
# -Acronym: Only scores without this mod are selected.
# =Acronym: Only scores with only this mod are selected.
#
# Examples:
# "+HD" (with HD).
# "+HR+HD" (with HDHR)
# "-HR" (without HR).
# "+HD-HR" (with HD but without HR).
# "=HD" (only HD).
# "=HD=HR" (only HDHR)
# "=HD,+HR+DT" (only HD, or any with HRDT).
#
MOD_FILTERS=
#
# GitHub token with read-only access.
#
GH_TOKEN=
#
# Google Service Account JSON credential file with access to the Sheets and Drive APIs.
#
GOOGLE_CREDENTIALS_FILE=./google-credentials.json
#
# The number of threads to use for SR/PP processing.
#
THREADS=4
#
# The osu-queue-score-statistics repositories to use. These shouldn't normally be changed.
#
SCORE_PROCESSOR_A=https://github.com/ppy/osu-queue-score-statistics
SCORE_PROCESSOR_B=https://github.com/ppy/osu-queue-score-statistics
#
# The osu-difficulty-calculator repositories to use. These shouldn't normally be changed.
#
DIFFICULTY_CALCULATOR_A=https://github.com/ppy/osu-difficulty-calculator
DIFFICULTY_CALCULATOR_B=https://github.com/ppy/osu-difficulty-calculator
#
# The maximum MySQL database size (in GiB) before the oldest generations are automatically purged.
#
# - If < 0, no generations are purged.
# - If = 0, only the current generation is kept.
# - If > 0, the oldest generations are purged until enough space is available.
#
MAX_DATABASE_SIZE=0
#
# The MySQL InnoDB buffer size.
# See: https://dev.mysql.com/doc/refman/5.7/en/innodb-buffer-pool-resize.html
#
INNODB_BUFFER_SIZE=4G