Skip to content

Commit

Permalink
unraid updates
Browse files Browse the repository at this point in the history
  • Loading branch information
bullmoose20 committed Jun 19, 2024
1 parent f63c96b commit b459d35
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 11 deletions.
20 changes: 9 additions & 11 deletions docs/kometa/install/unraid.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Config Error: config not found at //config
```
We need to have a file called `config.yml` in the correct directory for Kometa to start. Open up an unRAID terminal session by clicking on the terminal icon `>_` in the top right of unRAID.

=== ":fontawesome-brands-linux: Linux"
=== ":fontawesome-brands-linux: unRAID"

[type this into your terminal]
```
Expand All @@ -110,9 +110,9 @@ The default config file contains a reference to a directory that will show an er

We'll create it here so the error doesn't show up later.

=== ":fontawesome-brands-linux: Linux"
=== ":fontawesome-brands-linux: unRAID"

[type this into your terminal]
[type this into your Kometa >_Console]
```
mkdir config/assets
```
Expand All @@ -127,14 +127,14 @@ We'll create it here so the error doesn't show up later.

First, make a copy of the template:

=== ":fontawesome-brands-linux: Linux"
=== ":fontawesome-brands-linux: unRAID"

Get a copy of the template to edit [type this into your terminal]:
Get a copy of the template to edit [type this into your Kometa >_Console]:
```
curl -fLvo config/config.yml https://raw.githubusercontent.com/Kometa-Team/Kometa/master/config/config.yml.template
```

Now open the copy in an editor on the machine of your choice (Use Linux tab below for the Unraid Kometa `>_Console`):
Now open the copy in an editor on the machine of your choice:

{%
include-markdown "./wt/wt-editor.md"
Expand All @@ -146,7 +146,7 @@ Now open the copy in an editor on the machine of your choice (Use Linux tab belo

#### Testing the config file

Save the file (Use Linux tab below for the Unraid Kometa `>_Console`):
Save the file:

{%
include-markdown "./wt/wt-save.md"
Expand Down Expand Up @@ -182,13 +182,11 @@ So let's run the script and see this happen:

### Setting up a collection file and creating a sample collection.

(Use Linux tab below for the Unraid Kometa `>_Console`):

{%
include-markdown "./wt/wt-05-local-file.md"
%}

Save the file (Use Linux tab below for the Unraid Kometa `>_Console`):
Save the file:

{%
include-markdown "./wt/wt-save.md"
Expand All @@ -210,7 +208,7 @@ Then run the script again:
include-markdown "./wt/wt-07-overlay-add.md"
%}

Save the file (Use Linux tab below for the Unraid Kometa `>_Console`):
Save the file:

{%
include-markdown "./wt/wt-save.md"
Expand Down
8 changes: 8 additions & 0 deletions docs/kometa/install/wt/wt-05-local-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ 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:

Expand Down
12 changes: 12 additions & 0 deletions docs/kometa/install/wt/wt-editor.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,18 @@
```
I’m using `notepad` here simply because it’s 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
```

I’m using `nano` here mostly because it’s 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**.
6 changes: 6 additions & 0 deletions docs/kometa/install/wt/wt-save.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,9 @@

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.


0 comments on commit b459d35

Please sign in to comment.