summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2023-01-12 19:18:16 -0300
committerRoger Gonzalez <roger@rogs.me>2023-01-12 19:18:16 -0300
commitde8646cd12955c788fa04871d54c227e9c395b76 (patch)
tree2fcff66e4917ac8b4661682d991f2ddaa818ef44
parent72e5d0199907297d0b99ac58abfa039b090065ee (diff)
Added "Running everything together" page
-rw-r--r--content/config/running-everything-together.md99
-rw-r--r--static/pics/party.gifbin0 -> 1765967 bytes
-rw-r--r--static/pics/running-everything-together-1.pngbin0 -> 25127 bytes
-rw-r--r--static/pics/running-everything-together-10.pngbin0 -> 1483107 bytes
-rw-r--r--static/pics/running-everything-together-2.pngbin0 -> 97169 bytes
-rw-r--r--static/pics/running-everything-together-3.pngbin0 -> 114892 bytes
-rw-r--r--static/pics/running-everything-together-4.pngbin0 -> 142735 bytes
-rw-r--r--static/pics/running-everything-together-5.pngbin0 -> 70056 bytes
-rw-r--r--static/pics/running-everything-together-6.pngbin0 -> 48810 bytes
-rw-r--r--static/pics/running-everything-together-7.pngbin0 -> 216362 bytes
-rw-r--r--static/pics/running-everything-together-8.pngbin0 -> 2027595 bytes
-rw-r--r--static/pics/running-everything-together-9.pngbin0 -> 48216 bytes
12 files changed, 94 insertions, 5 deletions
diff --git a/content/config/running-everything-together.md b/content/config/running-everything-together.md
index a69e1b1..79a513c 100644
--- a/content/config/running-everything-together.md
+++ b/content/config/running-everything-together.md
@@ -1,10 +1,99 @@
---
-title: "Running Everything Together"
+title: "Running everything together"
date: 2023-01-12T18:06:44-03:00
draft: false
-weight: 100
+weight: 7
+summary: So you finally got YAMS running? Let's add some movies and see everything working together!
---
-Lorem markdownum aequalis strigis. Saetigeri iubeas, vultu huic alvum nondum
-de obside ut laniavit arbor palmis, cum quin. Rupes vetat videndo, armigerae
-crimen habet Priamum nec.
+## First, I want to congratulate you 🎉
+
+You did it! You installed and configured YAMS! Give yourself a good pat on your back 🙇🏻
+
+[![party](/pics/party.gif)](/pics/party.gif)
+
+Now comes the fun part: Adding your shows/movies and see everything working together 😎
+
+## Radarr & Sonarr
+
+This instructions will apply for both Radarr and Sonarr. To keep the tutorial brief, I will only test Radarr.
+
+Open Radarr at [http://{your-ip-address}:7878/]() and on the left menu click on "Add New". In this tutorial I'll use "The Godfather", but you can search for the movie you want!
+
+My recommendation is that you go for a famous movie first, just to confirm everything is working as expected.
+
+[![running-everything-together-1](/pics/running-everything-together-1.png)](/pics/running-everything-together-1.png)
+
+Click on the movie you want to download.
+
+[![running-everything-together-2](/pics/running-everything-together-2.png)](/pics/running-everything-together-2.png)
+
+On the modal, select the quality you want the movie to be downloaded. If your movie is part of a collection, you can choose to download the entire collection in the "Monitor" box. For this case, I want to download the entire Godfather collection, so I'll choose that on the modal.
+
+Finally click on "Add Movie"
+
+[![running-everything-together-3](/pics/running-everything-together-3.png)](/pics/running-everything-together-3.png)
+
+Now, if you go back to "Movies", you'll see the movie(s) you added.
+
+[![running-everything-together-4](/pics/running-everything-together-4.png)](/pics/running-everything-together-4.png)
+
+If you go to "Activity", you'll see their download status.
+
+[![running-everything-together-5](/pics/running-everything-together-5.png)](/pics/running-everything-together-5.png)
+
+## qBittorrent
+
+If you open qBittorrent in [http://{your-ip-address}:8080/](), you'll see your movie(s) downloading!
+
+This means it is working as expected. When they finish downloading, Radarr is going to pick them up and put them in the right folder.
+
+[![running-everything-together-6](/pics/running-everything-together-6.png)](/pics/running-everything-together-6.png)
+
+## Emby
+
+If you wait for the movies to download, if you go to Emby at [http://{your-ip-address}:8096/](), you'll see your movies right there, waiting for you.
+
+[![running-everything-together-7](/pics/running-everything-together-7.png)](/pics/running-everything-together-7.png)
+
+If you open the movie, you'll see it even has subtitles! Which means [Bazarr](/config/bazarr) is working as well!
+
+[![running-everything-together-8](/pics/running-everything-together-8.png)](/pics/running-everything-together-8.png)
+
+[![running-everything-together-9](/pics/running-everything-together-9.png)](/pics/running-everything-together-9.png)
+
+You can play the movie right from your browser, with subtitles included:
+[![running-everything-together-10](/pics/running-everything-together-10.png)](/pics/running-everything-together-10.png)
+
+## Your filesystem
+
+If you visit your `/mediafolder/movies` folder, you can check how Radarr is managing your library.
+
+```sh
+roger@debian:/srv/media/movies$ tree .
+.
+├── The Godfather (1972)
+│   ├── The Godfather (1972).en.srt
+│   ├── The Godfather (1972).es.srt
+│   └── The Godfather (1972).mp4
+├── The Godfather Part II (1974)
+│   ├── The Godfather Part II (1974).en.srt
+│   ├── The Godfather Part II (1974).es.srt
+│   └── The Godfather Part II (1974).mp4
+└── The Godfather Part III (1990)
+ ├── The Godfather Part III (1990).en.srt
+ ├── The Godfather Part III (1990).es.srt
+ └── The Godfather Part III (1990).mp4
+
+3 directories, 9 files
+```
+
+If you don't like the way the folders/movies are named, you can always change it in [Radarr's media management page](/config/radarr#media-management). The same applies for [Sonarr](/config/sonarr#media-management).
+
+# Final step and conclusions
+
+You should have your first media server up and running now! That's a big step forward into dropping your dependency on big services like Netflix or Amazon Prime.
+
+There's still A LOT of things you can do to make your experience even better! You can go to the [Recommendations](/config/recommendations) page now and finish the tutorial.
+
+ 🙌 Thank you for being here and for following the tutorial! Enjoy the fruit of your labor. You are awesome! 😎
diff --git a/static/pics/party.gif b/static/pics/party.gif
new file mode 100644
index 0000000..af513aa
--- /dev/null
+++ b/static/pics/party.gif
Binary files differ
diff --git a/static/pics/running-everything-together-1.png b/static/pics/running-everything-together-1.png
new file mode 100644
index 0000000..5c1796a
--- /dev/null
+++ b/static/pics/running-everything-together-1.png
Binary files differ
diff --git a/static/pics/running-everything-together-10.png b/static/pics/running-everything-together-10.png
new file mode 100644
index 0000000..6e6cb21
--- /dev/null
+++ b/static/pics/running-everything-together-10.png
Binary files differ
diff --git a/static/pics/running-everything-together-2.png b/static/pics/running-everything-together-2.png
new file mode 100644
index 0000000..508a828
--- /dev/null
+++ b/static/pics/running-everything-together-2.png
Binary files differ
diff --git a/static/pics/running-everything-together-3.png b/static/pics/running-everything-together-3.png
new file mode 100644
index 0000000..ac6168f
--- /dev/null
+++ b/static/pics/running-everything-together-3.png
Binary files differ
diff --git a/static/pics/running-everything-together-4.png b/static/pics/running-everything-together-4.png
new file mode 100644
index 0000000..16fe4e3
--- /dev/null
+++ b/static/pics/running-everything-together-4.png
Binary files differ
diff --git a/static/pics/running-everything-together-5.png b/static/pics/running-everything-together-5.png
new file mode 100644
index 0000000..ea1b3c9
--- /dev/null
+++ b/static/pics/running-everything-together-5.png
Binary files differ
diff --git a/static/pics/running-everything-together-6.png b/static/pics/running-everything-together-6.png
new file mode 100644
index 0000000..548509d
--- /dev/null
+++ b/static/pics/running-everything-together-6.png
Binary files differ
diff --git a/static/pics/running-everything-together-7.png b/static/pics/running-everything-together-7.png
new file mode 100644
index 0000000..36ca29f
--- /dev/null
+++ b/static/pics/running-everything-together-7.png
Binary files differ
diff --git a/static/pics/running-everything-together-8.png b/static/pics/running-everything-together-8.png
new file mode 100644
index 0000000..ba43c36
--- /dev/null
+++ b/static/pics/running-everything-together-8.png
Binary files differ
diff --git a/static/pics/running-everything-together-9.png b/static/pics/running-everything-together-9.png
new file mode 100644
index 0000000..d37a8f2
--- /dev/null
+++ b/static/pics/running-everything-together-9.png
Binary files differ