-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (25 loc) · 1010 Bytes
/
.env.example
File metadata and controls
28 lines (25 loc) · 1010 Bytes
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
#
# Variables GameZIP
#
# IGDB API, read here https://api-docs.igdb.com/#account-creation
client_id=
client_secret=
# Where your files will be stored after compression, Example /home/ola/
# Important: The "/" at the end of the path is needed.
storeFolder=/set/yours/
# Torrents games category, example 'Games'
categoryName=Games
logFileLocation=gameZip.log
# Number of CPU threads to use with 7z
multithread=8
# Comma-separated list of passwords to try for locked RAR files
password_list=password,123456,qwerty,admin,letmein
# Popularity Filter Settings
# If Enabled, only games with a rating count above the minimum will be compressed.
# If Disabled, all games will be compressed regardless of their popularity.
ENABLE_POPULARITY_FILTER=false
# If enabled, games not found in IGDB will be skipped instead of raising an error.
# This is useful for handling unknown or obscure games without stopping the process.
SKIP_UNKNOWN_GAMES=false
# Minimum number of ratings needed for IGDB
MIN_IGDB_RATING_COUNT=100