diff --git a/.gitignore b/.gitignore index db78cbb..d019420 100644 --- a/.gitignore +++ b/.gitignore @@ -480,4 +480,4 @@ $RECYCLE.BIN/ *.lnk # Configuration files for Fetcharr -/config.yaml \ No newline at end of file +/fetcharr.yaml \ No newline at end of file diff --git a/README.md b/README.md index 7d2decf..28e653e 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ services: restart: unless-stopped ``` -Copy the [`config.example.yaml`](./config.example.yaml)-file to your configuration folder as `config.yaml` and edit it to your liking. +Copy the [`fetcharr.example.yaml`](./fetcharr.example.yaml)-file to your configuration folder as `fetcharr.yaml` and edit it to your liking. When you've changed the config-file, remember to restart Fetcharr for it to take effect. ## 📝 Contributing diff --git a/docker-compose.yml b/docker-compose.yml index e7e74b5..4de32c7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: - 8080:8080 volumes: - type: bind - source: ./config.yaml - target: /config/config.yaml + source: ./fetcharr.yaml + target: /config/fetcharr.yaml read_only: true restart: unless-stopped \ No newline at end of file diff --git a/docs/docs/configuration/basic-setup.mdx b/docs/docs/configuration/basic-setup.mdx index 0d82df6..4d74508 100644 --- a/docs/docs/configuration/basic-setup.mdx +++ b/docs/docs/configuration/basic-setup.mdx @@ -34,7 +34,7 @@ You can read their page on [getting your Plex token here](https://support.plex.t This means that whether you're configuring a Radarr or Sonarr instance in Fetcharr, these configuration values will work for both. -```yaml title="config.yaml" +```yaml title="fetcharr.yaml" service_type: instance_name: enabled: true diff --git a/docs/docs/configuration/config_examples.mdx b/docs/docs/configuration/config_examples.mdx index 00bebed..e62a6d0 100644 --- a/docs/docs/configuration/config_examples.mdx +++ b/docs/docs/configuration/config_examples.mdx @@ -11,7 +11,7 @@ This page lists various scenarios supported by Fetcharr, which might come in han This method functions on both Radarr and Sonarr instances. It separates anime content from other content and sends them to different instances. This can help prevent clutter in your Sonarr and/or Radarr instances. -```yaml title="config.yaml" +```yaml title="fetcharr.yaml" sonarr: default: base_url: http://localhost:8989 @@ -40,7 +40,7 @@ Fetcharr will prefer the instance *explicitly* allows anime, as opposed to the i This method functions on both Radarr and Sonarr instances. It separates content for children into a separate instance, allowing for less clutter. It functions very similar to [anime-only instances](#limit-an-instance-to-anime-only). -```yaml title="config.yaml" +```yaml title="fetcharr.yaml" sonarr: default: base_url: http://localhost:8989 diff --git a/docs/docs/configuration/filters.mdx b/docs/docs/configuration/filters.mdx index 3af10c9..f8df63f 100644 --- a/docs/docs/configuration/filters.mdx +++ b/docs/docs/configuration/filters.mdx @@ -48,7 +48,7 @@ Fetcharr then picks the instance with the highest score. Given three Sonarr instances with the given filters: -```yaml title="config.yaml" +```yaml title="fetcharr.yaml" sonarr: default: [...] diff --git a/config.example.yaml b/fetcharr.example.yaml similarity index 100% rename from config.example.yaml rename to fetcharr.example.yaml