mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-06 05:37:45 -05:00
- adjusted compose file to store config data - ignoring configs and data for version history - adjusted setup script to make second instance the dev instance
26 lines
549 B
Python
26 lines
549 B
Python
config_content = """
|
|
instances:
|
|
radarr:
|
|
- name: "Master"
|
|
base_url: "http://localhost:7878"
|
|
api_key: "API_KEY"
|
|
- name: "DEV"
|
|
base_url: "http://localhost:7887"
|
|
api_key: "API_KEY"
|
|
sonarr:
|
|
- name: "Master"
|
|
base_url: "http://localhost:8989"
|
|
api_key: "API_KEY"
|
|
- name: "DEV"
|
|
base_url: "http://localhost:8998"
|
|
api_key: "API_KEY"
|
|
settings:
|
|
export_path: "./exports"
|
|
import_path: "./imports"
|
|
ansi_colors: true
|
|
|
|
"""
|
|
|
|
with open('config.yml', 'w') as file:
|
|
file.write(config_content)
|