[15] Nightly fix unraid docs (#2125)

pull/2126/head
bullmoose20 5 months ago committed by GitHub Action
parent f108b79e83
commit faee45fcea

@ -1 +1 @@
2.0.2-build14
2.0.2-build15

@ -137,7 +137,7 @@ First, make a copy of the template:
Now open the copy in an editor on the machine of your choice:
{%
include-markdown "./wt/wt-editor.md"
include-markdown "./wt/wt-editor-unraid.md"
%}
{%
@ -149,7 +149,7 @@ Now open the copy in an editor on the machine of your choice:
Save the file:
{%
include-markdown "./wt/wt-save.md"
include-markdown "./wt/wt-save-unraid.md"
%}
Then run the script again:
@ -183,13 +183,13 @@ So let's run the script and see this happen:
### Setting up a collection file and creating a sample collection.
{%
include-markdown "./wt/wt-05-local-file.md"
include-markdown "./wt/wt-05-local-file-unraid.md"
%}
Save the file:
{%
include-markdown "./wt/wt-save.md"
include-markdown "./wt/wt-save-unraid.md"
%}
Then run the script again:
@ -211,7 +211,7 @@ Then run the script again:
Save the file:
{%
include-markdown "./wt/wt-save.md"
include-markdown "./wt/wt-save-unraid.md"
%}
Then run the script again:

@ -0,0 +1,46 @@
If the default collection files do not allow you to create the collections you want, you can define your own collections in your own collection files to do whatever you like within the capabilities of Kometa. We will create a simple collection that will contain 20 comedy movies released since 2012.
First, open the collection file [this will create the file if it doesn't already exist]:
=== ":fontawesome-brands-linux: unRAID"
[type this into your Kometa `>_Console`]
```
nano "config/Movies.yml"
```
In this file, add the following, exactly as it is shown here; remember that spacing is significant in YAML files:
```yaml
collections:
Recent Comedy:
plex_search:
all:
genre: Comedy
year.gte: 2012
limit: 20
```
Save the file:
{%
include-markdown "./wt-save-unraid.md"
%}
Next, add a reference to this file to your config file.
Open the config file again and add the last line shown below:
```yaml
libraries:
All The Movies:
collection_files:
- default: basic
- default: imdb
# see the wiki for how to use local files, folders, URLs, or files from git
- file: config/Movies.yml ## <<< ADD THIS LINE
```
That line needs to match the path you used when you created the file a moment ago. If you are copy-pasting these commands, it does.

@ -26,15 +26,6 @@ First, open the collection file [this will create the file if it doesn't already
notepad "config\Movies.yml"
```
=== ":fontawesome-brands-linux: unRAID"
[type this into your Kometa `>_Console`]
```
nano "config/Movies.yml"
```
In this file, add the following, exactly as it is shown here; remember that spacing is significant in YAML files:
```yaml

@ -0,0 +1,15 @@
=== ":fontawesome-brands-linux: unRAID"
[type this into your Kometa `>_Console`]
```
nano config/config.yml
```
Im using `nano` here mostly because its simpler than any other editor on Linux.
You can use any other text editor you wish, provided it saves files as PLAIN TEXT. `vi`, `emacs`, etc.
From here on in, when this walkthrough says "open the config file", I mean this `nano` or `notepad` command. **Don't copy the template again**.

@ -45,18 +45,4 @@
```
Im using `notepad` here simply because its built into Windows. You can use any other text editor you wish, provided it saves files as PLAIN TEXT.
=== ":fontawesome-brands-linux: unRAID"
[type this into your Kometa `>_Console`]
```
nano config/config.yml
```
Im using `nano` here mostly because its simpler than any other editor on Linux.
You can use any other text editor you wish, provided it saves files as PLAIN TEXT. `vi`, `emacs`, etc.
From here on in, when this walkthrough says "open the config file", I mean this `nano` or `notepad` command. **Don't copy the template again**.

@ -0,0 +1,5 @@
=== ":fontawesome-brands-linux: unRAID"
If you're using `nano`, type control-`x`, then `y`, then the enter key.

@ -12,9 +12,3 @@
If you're using `notepad`, type control-`s` or choose `Save` from the `File` menu.
=== ":fontawesome-brands-linux: unRAID"
If you're using `nano`, type control-`x`, then `y`, then the enter key.

Loading…
Cancel
Save