mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 10:51:02 +01:00
v0.2.4
## Features - Implemented #12 - Enhanced message formatting and user prompts for deletions. ## Additions - ETHEL SCENE release group added. - FLiGHTS group to missing HDR10. - Overhauled h265 custom formats and added new h265 4k format. - MAX WEB source added to custom formats. ## Improvements - Script to generate initial config file. - Removed tracking of config.yml for security. - Updated README for install process and new delete feature.
This commit is contained in:
25
setup.py
Normal file
25
setup.py
Normal file
@@ -0,0 +1,25 @@
|
||||
config_content = """
|
||||
instances:
|
||||
master:
|
||||
sonarr:
|
||||
base_url: "http://localhost:8989"
|
||||
api_key: "API_KEY"
|
||||
radarr:
|
||||
base_url: "http://localhost:7878"
|
||||
api_key: "API_KEY"
|
||||
extras:
|
||||
sonarr:
|
||||
- name: "4k-sonarr"
|
||||
base_url: "http://localhost:8998"
|
||||
api_key: "API_KEY"
|
||||
radarr:
|
||||
- name: "4k-radarr"
|
||||
base_url: "http://localhost:7887"
|
||||
api_key: "API_KEY"
|
||||
|
||||
settings:
|
||||
export_path: "./exports"
|
||||
"""
|
||||
|
||||
with open('config.yml', 'w') as file:
|
||||
file.write(config_content)
|
||||
Reference in New Issue
Block a user