fix builds

This commit is contained in:
Cloudburst 2022-10-13 23:49:28 +02:00
parent 78873fa55b
commit f8801eac3e
2 changed files with 14 additions and 13 deletions

View File

@ -32,7 +32,8 @@ module.exports = {
options: { options: {
plugins: [ plugins: [
'gatsby-remark-smartypants', 'gatsby-remark-smartypants',
{ resolve: 'gatsby-remark-mermaid', options: { theme: "dark", mermaidOptions: { themeCSS: ".mermaid foreignObject {overflow: visible;}" } } }, // not working without puppeteer
//{ resolve: 'gatsby-remark-mermaid', options: { theme: "dark", mermaidOptions: { themeCSS: ".mermaid foreignObject {overflow: visible;}" } } },
{ resolve: 'gatsby-remark-prismjs', options: { showLineNumbers: false, } }, { resolve: 'gatsby-remark-prismjs', options: { showLineNumbers: false, } },
] ]
} }

View File

@ -28,29 +28,29 @@ The advantages of this provier over jellyfin are that it's lightweight and integ
Here I'll cover the install on a managed seedbox using ultra.cc Here I'll cover the install on a managed seedbox using ultra.cc
Here is a diagram I made to summarize how everything works: Here is a diagram I made to summarize how everything works:
<!--
```mermaid ```mermaid
flowchart TB flowchart TB
subgraph P[P2P network] subgraph P[P2P network]
Alice((Alice)) <--> Trackers Alice((Alice)) <-- > Trackers
Bob((Bob)) <--> Trackers Bob((Bob)) <-- > Trackers
Paul((Paul)) <--> Trackers Paul((Paul)) <-- > Trackers
end end
Trackers --> Prowlarr Trackers -- > Prowlarr
subgraph S[Search for Movies, Tv series, Animes] subgraph S[Search for Movies, Tv series, Animes]
Prowlarr <---> |Requests| Radarr Prowlarr <--- > |Requests| Radarr
Prowlarr <---> |Requests| Sonarr Prowlarr <--- > |Requests| Sonarr
click Prowlarr callback "Prowlarr is used for stuff" click Prowlarr callback "Prowlarr is used for stuff"
end end
Sonarr --> |Send torrent| A(Radarr) Sonarr -- > |Send torrent| A(Radarr)
Radarr[Radarr] --> |Send torrent| A(Radarr) Radarr[Radarr] -- > |Send torrent| A(Radarr)
A[Transmission] -->|Download to filesystem| C{Nginx} A[Transmission] -- >|Download to filesystem| C{Nginx}
C -->|Stream| D(Cloudstream-3) C -- >|Stream| D(Cloudstream-3)
``` ``` -->
Prowlarr is between the tracker and the media mangment apps (radarr and sonarr): it handles the requests to the trackers (that you add inside prowlarr) Prowlarr is between the tracker and the media mangment apps (radarr and sonarr): it handles the requests to the trackers (that you add inside prowlarr)