mikmc5/documents
0
1# TMDB API Key
2TMDB_API_KEY=f051e7366c6105ad4f9aafe4733d9dae
3
4# Year range for filtering movies
5YEAR_START=2015
6YEAR_END=2024
7
8# Minimum average rating (score) for movies
9MIN_SCORE=5
10
11# Maximum number of pages to fetch from TMDB
12MAX_PAGES=25
13
14# Number of results per page
15PAGE_SIZE=25
16
17# Genres for filtering movies (AND condition)
18GENRES=28,14 # Action and Adventure combined (AND condition)
19
20# OR Genres for filtering movies
21GENRES_OR=28|14 # Action or Adventure (OR condition)
22
23# Exclude these genres (AND condition)
24EXCLUDE_GENRES=16,10402
25
26# OR Exclude genres
27EXCLUDE_GENRES_OR=
28
29# Port for the Stremio add-on server (if needed)
30PORT=3000
31 