Advertisement
Guest User

config.yml

a guest
Nov 11th, 2024
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 6.24 KB | Source Code | 0 0
  1. radarr:
  2.   url: http://192.168.5.242:7878    # Radarr URL (ensure it's correct and accessible)
  3.   token: XXXXX  # Set your Radarr token here, if required
  4.   add_missing: true                # Ensure Radarr adds missing movies
  5.   add_existing: false              # Do not add existing movies
  6.   upgrade_existing: false          # Do not upgrade existing movies
  7.   monitor_existing: false          # Do not monitor existing movies
  8.   ignore_cache: false              # Do not ignore cache
  9.   monitor: true                    # Enable movie monitoring in Radarr
  10.   availability: announced          # Monitor availability as announced
  11.   quality_profile: Any               # Specify quality profile ID
  12.   search: false                    # Disable searching for new movies
  13.   root_folder_path: /media/Movies    # Define the root folder path for Radarr
  14.   radarr_path: /mnt/ssdappdata/dockerdata/binhex-radarr/    # Radarr install path
  15.   plex_path: /mnt/ssdappdata/dockerdata/Plex-Media-Server/    # Plex path
  16.   tag: radarr
  17.  
  18. # trakt
  19. trakt:
  20.   client_id: XXXXX
  21.   client_secret: XXXXX
  22.   username: XXXXX                      # Your Trakt username
  23.   pin: XXXXX
  24.  
  25. # TMDb API Key Configuration
  26.   authorization:
  27.     access_token: XXXXX
  28.     token_type: Bearer
  29.     expires_in: 7889237
  30.     refresh_token: XXXXX
  31.     scope: public
  32.     created_at: 1731343946
  33. # tmdb    
  34. tmdb:
  35.   apikey: XXXXX    # Your TMDb API key
  36.   language: en                                # Default language for TMDb queries
  37.   cache_expiration: 60                        # Cache expiration in minutes
  38.   region: US                                  # Restricts results to a specific region (optional)
  39.  
  40. # Plex Server Configuration
  41. plex:
  42.   url: http://192.168.5.242:32400/      # Ensure trailing slash
  43.   token: XXXXX            # Confirm token is valid
  44.   timeout: 60                            # Timeout for Plex connections
  45.   verify_ssl: false                      # Disable SSL verification if needed
  46.   clean_bundles: false                   # Prevents automatic cleaning of unused bundles
  47.   empty_trash: false                     # Prevents automatic emptying of Plex trash
  48.   db_cache: 100                          # Enable Plex DB cache
  49.   optimize: false
  50.  
  51. libraries:
  52.   Movies:
  53.     type: movie
  54.     collection_files:
  55.       - default: trakt
  56.         template_variables:
  57.           use_collected: true
  58.           use_recommended: true
  59.           limit: 20
  60.           build_collection: true
  61.           sync_mode: sync
  62.           radarr_tag: radarr
  63.           visible_library_top: true
  64.           visible_home_top: true
  65.           visible_shared_top: true
  66.  
  67. collections:
  68.   Christmas:
  69.     trakt_list:
  70.      - https://trakt.tv/users/movistapp/lists/christmas-movies
  71.       - https://trakt.tv/users/2borno2b/lists/christmas-movies-extravanganza
  72.     sync_mode: sync
  73.     visible_home: true
  74.     visible_shared: true
  75.  
  76.   X-Men Universe:
  77.     sync_mode: sync
  78.     trakt_list: https://trakt.tv/users/donxy/lists/x-men-universe?sort=rank,asc   # X-Men Universe List
  79.     trakt_type: movies
  80.     limit: 40
  81.     schedule: daily
  82.     visible_home: true
  83.     visible_shared: true
  84.     radarr_add_missing: true   # Add missing movies to Radarr
  85.  
  86.   Anticipated Movies:
  87.     type: trakt_list
  88.     trakt_list: anticipated
  89.     trakt_type: movies
  90.     limit: 10
  91.     schedule: daily
  92.  
  93.   Collected Movies:
  94.     type: trakt_list
  95.     trakt_list: collected
  96.     trakt_type: movies
  97.     limit: 10
  98.     schedule: weekly
  99.  
  100.   Trending Movies:
  101.     type: trakt_trending
  102.     trakt_type: movies
  103.     limit_trakt_trending_movies1: 10
  104.     sync_mode_trakt_trending_movies1: append
  105.     collection_order_trakt_trending_movies1: alpha
  106.     schedule: daily
  107.  
  108.   Popular Movies:
  109.     type: trakt_list
  110.     trakt_list: popular
  111.     trakt_type: movies
  112.     limit: 20
  113.     sync_mode: sync
  114.     collection_order: release
  115.     schedule: weekly
  116.  
  117.   Trakt Trending & Popular:
  118.     trakt_chart:
  119.       - chart: trending
  120.         limit: 30
  121.       - chart: popular
  122.         limit: 30
  123.     sync_mode: sync    
  124.  
  125.   Recommended Movies:
  126.     type: trakt_list
  127.     trakt_list: recommended
  128.     trakt_type: movies
  129.     limit: 10
  130.     schedule: daily
  131.  
  132.   Watched Movies:
  133.     type: trakt_list
  134.     trakt_list: watched
  135.     trakt_type: movies
  136.     limit: 10
  137.     schedule: weekly
  138.  
  139.   TV Shows:
  140.     type: show
  141.     collection_files:
  142.       - default: trakt
  143.         template_variables:
  144.           use_collected: true             # Includes collected TV shows in the collection
  145.           use_recommended: true           # Includes recommended TV shows in the collection
  146.           limit: 30                       # Limits the collection to 30 items
  147.           visible_library_popular: true   # Makes popular shows visible in the Plex library
  148.           visible_home_popular: true      # Makes popular shows visible on the home page
  149.           visible_shared_popular: true   # Makes popular shows visible in shared lists
  150.           radarr_add_missing: false      # Does not add missing TV shows to Radarr
  151.  
  152.  
  153. # Schedule for Kometa Runs
  154. run:
  155.   time: [02:00, 14:00]                        # Kometa will run at 2 AM and 2 PM daily to update collections
  156.  
  157. # Options and Safety Settings
  158. options:
  159.   collections_only: true
  160.   debug: true
  161.   timeout: 60
  162.  
  163. # Additional Settings
  164. settings:
  165.   run_order:
  166.  - operations
  167.   - metadata
  168.   - collections
  169.   - overlays
  170.   cache: false
  171.   cache_expiration: 60
  172.   asset_folders: false
  173.   asset_depth: 0
  174.   create_asset_folders: false
  175.   prioritize_assets: false
  176.   dimensional_asset_rename: false
  177.   download_url_assets: false
  178.   show_missing_assets: true
  179.   show_missing_season_assets: false
  180.   show_missing_episode_assets: false
  181.   show_asset_not_needed: true
  182.   sync_mode: append
  183.   default_collection_order: none
  184.   minimum_items: 1
  185.   item_refresh_delay: 0
  186.   delete_below_minimum: false
  187.   delete_not_scheduled: false
  188.   run_again_delay: 0
  189.   missing_only_released: false
  190.   only_filter_missing: false
  191.   show_unmanaged: true
  192.   show_unconfigured: true
  193.   show_filtered: false
  194.   show_options: false
  195.   show_missing: true
  196.   save_report: false
  197.   tvdb_language: default
  198.   ignore_ids:
  199.   ignore_imdb_ids:
  200.   playlist_sync_to_users: all
  201.   playlist_exclude_users:
  202.   playlist_report: true
  203.   custom_repo:
  204.   overlay_artwork_filetype: jpg
  205.   overlay_artwork_quality: 90
  206.   asset_directory:
Tags: kometa
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement