From bd756a300156441280f0622b9e230fb3ebfb109e Mon Sep 17 00:00:00 2001 From: Viren070 Date: Tue, 6 May 2025 20:45:22 +0100 Subject: [PATCH] docs: update regex envs to be undefined by default and note to use single quotes --- .env.sample | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.env.sample b/.env.sample index b8723d7c..c93af0ac 100644 --- a/.env.sample +++ b/.env.sample @@ -99,12 +99,15 @@ ENCRYPT_STREMTHRU_URLS=true # Default regex patterns for filtering and sorting # These are used as defaults, and can be overridden in the addon configuration page +# +# NOTE: You MUST provide the regex between 2 single quotes ('), not double quotes or no quotes, otherwise it will NOT work. +# # Example Exclude Pattern: `/b(0neshot)\b` will exclude streams with the word "0neshot" in them -DEFAULT_REGEX_EXCLUDE_PATTERN= +# DEFAULT_REGEX_EXCLUDE_PATTERN='' # Example Include Pattern: `/b(3L)\b` will include only streams with the word "3L" in them -DEFAULT_REGEX_INCLUDE_PATTERN= +# DEFAULT_REGEX_INCLUDE_PATTERN='' # Example Sort Patterns: `/b(3L|BiZKiT)\b \b(FraMeSToR)\b \b(TRiToN)\b` will sort streams with the word "3L" or "BiZKiT" in them, followed by "FraMeSToR", followed by "TRiToN" -DEFAULT_REGEX_SORT_PATTERNS= +# DEFAULT_REGEX_SORT_PATTERNS='' # The default timeout for all requests. If other timeouts are not set, this will be used DEFAULT_TIMEOUT=15000