aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--config/default.yaml4
-rw-r--r--config/production.yaml.example4
-rw-r--r--config/test.yaml6
3 files changed, 11 insertions, 3 deletions
diff --git a/config/default.yaml b/config/default.yaml
index d59425365..bc0530d79 100644
--- a/config/default.yaml
+++ b/config/default.yaml
@@ -57,9 +57,9 @@ log:
57 57
58cache: 58cache:
59 previews: 59 previews:
60 size: 1 # Max number of previews you want to cache 60 size: 500 # Max number of previews you want to cache
61 captions: 61 captions:
62 size: 1 # Max number of video captions/subtitles you want to cache 62 size: 500 # Max number of video captions/subtitles you want to cache
63 63
64admin: 64admin:
65 email: 'admin@example.com' # Your personal email as administrator 65 email: 'admin@example.com' # Your personal email as administrator
diff --git a/config/production.yaml.example b/config/production.yaml.example
index 98cdd7ca7..d347b0ece 100644
--- a/config/production.yaml.example
+++ b/config/production.yaml.example
@@ -71,7 +71,9 @@ log:
71 71
72cache: 72cache:
73 previews: 73 previews:
74 size: 100 # Max number of previews you want to cache 74 size: 500 # Max number of previews you want to cache
75 captions:
76 size: 500 # Max number of video captions/subtitles you want to cache
75 77
76admin: 78admin:
77 email: 'admin@example.com' 79 email: 'admin@example.com'
diff --git a/config/test.yaml b/config/test.yaml
index a4ee9a7b2..ffe736b24 100644
--- a/config/test.yaml
+++ b/config/test.yaml
@@ -21,6 +21,12 @@ smtp:
21log: 21log:
22 level: 'debug' 22 level: 'debug'
23 23
24cache:
25 previews:
26 size: 1
27 captions:
28 size: 1
29
24signup: 30signup:
25 enabled: true 31 enabled: true
26 32