-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.yaml
More file actions
141 lines (118 loc) · 2.85 KB
/
config.yaml
File metadata and controls
141 lines (118 loc) · 2.85 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# config.yaml
# Download Location
# Needs to be filled out correctly, e.g. "/data/downloads/manga"
#
# Default: ""
#
downloadLocation: ""
# Naming Template
# This can be used to change how the downloaded chapter will be named
# The default will result something like this: Manga Ch. 001 - Chapter Title
#
# Default: {manga:<.>} Ch. {num:3}{title: - <.>}
#
namingTemplate: "{manga:<.>} Ch. {num:3}{title: - <.>}"
# Check interval in minutes
#
# Default: 15
#
checkInterval: 15
# Enable pprof endpoint for runtime profiling
#
# Default: false
#
pprofEnabled: false
# pprof endpoint address
#
# Default: "127.0.0.1:6060"
#
pprofAddress: "127.0.0.1:6060"
# Monitored Manga
# Here you can define which manga you want to monitor
#
monitoredManga:
# Custom name you can give the entry to easily distinguish between them
#
One Piece:
# Source from where the manga should be downloaded
#
source: "tcbscans"
# Name of the manga on TCB Scans
#
manga: "One Piece"
# Custom name you can give the entry to easily distinguish between them
#
Isekai Ojisan:
# Source from where the manga should be downloaded
#
source: "mangadex"
# ID of the manga on MangaDex
#
manga: "d8f1d7da-8bb1-407b-8be3-10ac2894d3c6"
# ID of the scanlation group on MangaDex
#
group: "310361d7-52dd-4848-9b36-2eb4fcc95e83"
# Language of the manga on MangaDex
#
language: "en"
# Overwrite can be used to overwrite the parsed manga name
#
overwrite: "Uncle from Another World"
# Custom name you can give the entry to easily distinguish between them
#
Kagurabachi:
# Source from where the manga should be downloaded
#
source: "mangaplus"
# ID of the manga on MangaPlus
#
manga: "100274"
# Custom name you can give the entry to easily distinguish between them
#
Solo Leveling Ragnarok:
# Source from where the manga should be downloaded
#
source: "flamecomics"
# URL of the manga on Flame Comics
#
manga: "https://flamecomics.xyz/series/solo-leveling-ragnarok/"
# Custom name you can give the entry to easily distinguish between them
#
One Punch Man:
# Source from where the manga should be downloaded
#
source: "cubari"
# URL of the gist for the manga on Cubari
#
manga: "https://git.io/OPM"
# ID of the scanlation group on MangaDex
#
group: "/r/OnePunchMan"
# mangarr logs file
# If not defined, logs to stdout
# Make sure to use forward slashes and include the filename with extension. e.g. "logs/mangarr.log", "C:/mangarr/logs/mangarr.log"
#
# Optional
#
#logPath: ""
# Log level
#
# Default: "DEBUG"
#
# Options: "ERROR", "DEBUG", "INFO", "WARN", "TRACE"
#
logLevel: "DEBUG"
# Log Max Size
#
# Default: 50
#
# Max log size in megabytes
#
#logMaxSize: 50
# Log Max Backups
#
# Default: 3
#
# Max amount of old log files
#
#logMaxBackups = 3