From 377c6bdcafce078f2206f22440f79217a8bd4f7f Mon Sep 17 00:00:00 2001 From: qtchaos <72168435+qtchaos@users.noreply.github.com> Date: Sat, 24 Feb 2024 01:42:02 +0200 Subject: [PATCH 1/6] feat: add new instances page --- README.md | 2 +- app.config.ts | 10 +-------- content/0.index.md | 2 +- content/1.self-hosting/1.hosting-intro.md | 2 +- content/3.client/3.configuration.md | 2 +- content/5.extra/1.streaming.md | 2 +- content/5.extra/2.instances.md | 25 +++++++++++++++++++++++ 7 files changed, 31 insertions(+), 14 deletions(-) create mode 100644 content/5.extra/2.instances.md diff --git a/README.md b/README.md index 89e6caf..7fd8b1e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ # movie-web docs -Find it at https://docs.movie-web.app/ +Find it at https://movie-web.github.io/docs diff --git a/app.config.ts b/app.config.ts index 4a4d504..6c24593 100644 --- a/app.config.ts +++ b/app.config.ts @@ -3,7 +3,7 @@ export default defineAppConfig({ title: 'movie-web', description: 'movie-web is a free and open source streaming site, no ads, no tracking, no nonsense.', - url: 'https://docs.movie-web.app', + url: 'https://movie-web.github.io/docs', image: '/cover.png', socials: { github: 'movie-web/movie-web', @@ -27,14 +27,6 @@ export default defineAppConfig({ text: 'Made with 💜', href: 'https://github.com/movie-web', }, - textLinks: [ - { - text: 'movie-web', - href: 'https://movie-web.app', - target: '_blank', - rel: 'noopener', - }, - ], }, }, }); diff --git a/content/0.index.md b/content/0.index.md index 05bdaab..12ac5b2 100644 --- a/content/0.index.md +++ b/content/0.index.md @@ -78,7 +78,7 @@ What's all the fuss? #title Multiple Languages #description - Supports over 25 languages, including English, German, French, Spanish, Italian, Czech, Hindi, Arabic, Hebrew and more. View the full list on [weblate](https://weblate.movie-web.app){target="\_blank"}. + Supports over 25 languages, including English, German, French, Spanish, Italian, Czech, Hindi, Arabic, Hebrew and more. :: ::card{icon="mdi:brush-variant"} #title diff --git a/content/1.self-hosting/1.hosting-intro.md b/content/1.self-hosting/1.hosting-intro.md index b108080..b677b54 100644 --- a/content/1.self-hosting/1.hosting-intro.md +++ b/content/1.self-hosting/1.hosting-intro.md @@ -5,7 +5,7 @@ title: 'Start self-hosting' # How to self-host ::alert{type="info"} -We **do not** provide support on how to self-host. If you can't figure it out then tough luck. Please do not make GitHub issues or ask in our Discord server for support on how to self-host. +We provide support on a case-by-case basis. If you have any questions, feel free to ask in our [Discord server](https://discord.gg/gQYB6fGArX). :: Since movie-web has many different components, there are a few configurations of how you can host it. Each of these configurations has their own benefits, whether that be having complete control over your data or customizing your experience. diff --git a/content/3.client/3.configuration.md b/content/3.client/3.configuration.md index 7a84507..f1bdf8b 100644 --- a/content/3.client/3.configuration.md +++ b/content/3.client/3.configuration.md @@ -80,7 +80,7 @@ Setting this configuration value to `true` will enable the history-router. ### `VITE_BACKEND_URL` - Type: `string` -- Default: `"https://backend.movie-web.app"` +- Default: `""` - Example: `"https://backend.example.com"` This is the URL for the movie-web backend server which handles cross-device syncing. diff --git a/content/5.extra/1.streaming.md b/content/5.extra/1.streaming.md index a2c1c42..ba97465 100644 --- a/content/5.extra/1.streaming.md +++ b/content/5.extra/1.streaming.md @@ -23,7 +23,7 @@ This method is recommended if you want to host a proxy for your friends and or f 1. Set up a proxy using one of our [guides](../2.proxy/1.deploy.md#deploying-the-proxy), [though we recommend Netlify](../2.proxy/1.deploy.md#method-1---netlify-easy). -2. Once that's done, go to the [Connections](https://movie-web.app/settings#settings-connection){target="\_blank"} section of the [Settings page](https://movie-web.app/settings){target="\_blank"} on [movie-web](https://movie-web.app){target="\_blank"}. +2. Once that's done, go to the **Connections** section of the **Settings page** on your movie-web instance of chocie. 3. Enable `Use custom proxy workers` if it's not already enabled. 4. Add a new custom proxy by clicking `Add new worker`. 5. Copy the URL of the proxy you deployed before, and paste it into the empty text box. diff --git a/content/5.extra/2.instances.md b/content/5.extra/2.instances.md new file mode 100644 index 0000000..566a645 --- /dev/null +++ b/content/5.extra/2.instances.md @@ -0,0 +1,25 @@ +--- +title: 'Instances' +--- + +# Instances + +This page showcases movie-web instances hosted by the community and other alternative sites. If you want to add your instance to this list, please open a pull request on [GitHub](https://github.com/movie-web/docs). + +## Official Instances + +These instances are maintained by the community and are considered "official", meaning they are likely to be up-to-date. Keep in mind, that since these are volunteer instances, they might be down or stop working entirely at any time. Some of these may not include a custom backend, so data syncing across devices might not be possible. If you want to be sure you have access to movie-web, you should consider [hosting your own instance.](../1.self-hosting/1.hosting-intro.md). + +* https://mw.lonelil.com by lonelil (yourelosingme) +* https://mv-web.netlify.app by chaos (qtchaos) +* https://movie-web-me.vercel.app by Isra (piranha2) +* https://scootydooter.vercel.app by Toon (toonarch) + +## Alternatives + +These sites are not related to movie-web but are good enough to switch to if the official instances are down. You can also use [FMHY](https://fmhy.pages.dev/videopiracyguide) to find even more options. + +* https://watch.lonelil.com +* https://themoviearchive.site +* https://braflix.video +* https://watch.streamflix.one From 56ad2f8a8b236d8b91f559fd57cc969d69854307 Mon Sep 17 00:00:00 2001 From: qtchaos <72168435+qtchaos@users.noreply.github.com> Date: Sat, 24 Feb 2024 02:20:59 +0200 Subject: [PATCH 2/6] docs: include GitHub username instead of Discord --- content/5.extra/2.instances.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/5.extra/2.instances.md b/content/5.extra/2.instances.md index 566a645..b6f5bdb 100644 --- a/content/5.extra/2.instances.md +++ b/content/5.extra/2.instances.md @@ -10,10 +10,10 @@ This page showcases movie-web instances hosted by the community and other altern These instances are maintained by the community and are considered "official", meaning they are likely to be up-to-date. Keep in mind, that since these are volunteer instances, they might be down or stop working entirely at any time. Some of these may not include a custom backend, so data syncing across devices might not be possible. If you want to be sure you have access to movie-web, you should consider [hosting your own instance.](../1.self-hosting/1.hosting-intro.md). -* https://mw.lonelil.com by lonelil (yourelosingme) -* https://mv-web.netlify.app by chaos (qtchaos) -* https://movie-web-me.vercel.app by Isra (piranha2) -* https://scootydooter.vercel.app by Toon (toonarch) +* https://mw.lonelil.com by [lonelil](https://github.com/lonelil) +* https://mv-web.netlify.app by [chaos](https://github.com/qtchaos) +* https://movie-web-me.vercel.app by [Isra](https://github.com/zisra) +* https://scootydooter.vercel.app by [Toon](https://github.com/Toon-arch) ## Alternatives From 011570a05456e80cb8beb9177e980d7711c458e8 Mon Sep 17 00:00:00 2001 From: qtchaos <72168435+qtchaos@users.noreply.github.com> Date: Mon, 26 Feb 2024 03:49:23 +0200 Subject: [PATCH 3/6] docs: change location of instances.md and add an instance --- content/{5.extra/2.instances.md => 0.instances.md} | 1 + 1 file changed, 1 insertion(+) rename content/{5.extra/2.instances.md => 0.instances.md} (93%) diff --git a/content/5.extra/2.instances.md b/content/0.instances.md similarity index 93% rename from content/5.extra/2.instances.md rename to content/0.instances.md index b6f5bdb..b301def 100644 --- a/content/5.extra/2.instances.md +++ b/content/0.instances.md @@ -12,6 +12,7 @@ These instances are maintained by the community and are considered "official", m * https://mw.lonelil.com by [lonelil](https://github.com/lonelil) * https://mv-web.netlify.app by [chaos](https://github.com/qtchaos) +* https://bmov.vercel.app by [TheScreechingBagel](https://github.com/TheScreechingBagel) * https://movie-web-me.vercel.app by [Isra](https://github.com/zisra) * https://scootydooter.vercel.app by [Toon](https://github.com/Toon-arch) From 81fe8205a85d710d719f5f61e1c70edf30f04e84 Mon Sep 17 00:00:00 2001 From: qtchaos <72168435+qtchaos@users.noreply.github.com> Date: Mon, 26 Feb 2024 20:14:53 +0200 Subject: [PATCH 4/6] =?UTF-8?q?docs:=20add=20instance,=20change=20discord?= =?UTF-8?q?=20link=20and=20add=20backend=20key=20(=F0=9F=92=BE)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- content/0.instances.md | 10 +++++++--- content/1.self-hosting/1.hosting-intro.md | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/content/0.instances.md b/content/0.instances.md index b301def..a525528 100644 --- a/content/0.instances.md +++ b/content/0.instances.md @@ -1,5 +1,6 @@ --- title: 'Instances' +icon: 'mdi:web' --- # Instances @@ -8,12 +9,15 @@ This page showcases movie-web instances hosted by the community and other altern ## Official Instances -These instances are maintained by the community and are considered "official", meaning they are likely to be up-to-date. Keep in mind, that since these are volunteer instances, they might be down or stop working entirely at any time. Some of these may not include a custom backend, so data syncing across devices might not be possible. If you want to be sure you have access to movie-web, you should consider [hosting your own instance.](../1.self-hosting/1.hosting-intro.md). +These instances are maintained by the community and are considered "official", meaning they are likely to be up-to-date. Keep in mind, that since these are volunteer instances, they might be down or stop working entirely at any time. If you want to be sure you have access to movie-web, you should consider [hosting your own instance](../1.self-hosting/1.hosting-intro.md). + +💾 - Instance has a backend for syncing data across devices * https://mw.lonelil.com by [lonelil](https://github.com/lonelil) -* https://mv-web.netlify.app by [chaos](https://github.com/qtchaos) -* https://bmov.vercel.app by [TheScreechingBagel](https://github.com/TheScreechingBagel) +* https://mv-web.netlify.app by [chaos](https://github.com/qtchaos) 💾 * https://movie-web-me.vercel.app by [Isra](https://github.com/zisra) +* https://bmov.vercel.app by [TheScreechingBagel](https://github.com/TheScreechingBagel) 💾 +* https://stream.thehairy.me by [thehairy](https://github.com/thehairy) 💾 * https://scootydooter.vercel.app by [Toon](https://github.com/Toon-arch) ## Alternatives diff --git a/content/1.self-hosting/1.hosting-intro.md b/content/1.self-hosting/1.hosting-intro.md index b677b54..5e92f3c 100644 --- a/content/1.self-hosting/1.hosting-intro.md +++ b/content/1.self-hosting/1.hosting-intro.md @@ -5,7 +5,7 @@ title: 'Start self-hosting' # How to self-host ::alert{type="info"} -We provide support on a case-by-case basis. If you have any questions, feel free to ask in our [Discord server](https://discord.gg/gQYB6fGArX). +We provide support on a case-by-case basis. If you have any questions, feel free to ask in our [Discord server](https://movie-web.github.io/links/discord). :: Since movie-web has many different components, there are a few configurations of how you can host it. Each of these configurations has their own benefits, whether that be having complete control over your data or customizing your experience. From 1cbf557171873774366a73861d46b9726b4e667c Mon Sep 17 00:00:00 2001 From: qtchaos <72168435+qtchaos@users.noreply.github.com> Date: Mon, 26 Feb 2024 20:32:20 +0200 Subject: [PATCH 5/6] docs: update explanation --- content/0.instances.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/0.instances.md b/content/0.instances.md index a525528..f6cd94f 100644 --- a/content/0.instances.md +++ b/content/0.instances.md @@ -11,7 +11,7 @@ This page showcases movie-web instances hosted by the community and other altern These instances are maintained by the community and are considered "official", meaning they are likely to be up-to-date. Keep in mind, that since these are volunteer instances, they might be down or stop working entirely at any time. If you want to be sure you have access to movie-web, you should consider [hosting your own instance](../1.self-hosting/1.hosting-intro.md). -💾 - Instance has a backend for syncing data across devices +Instances marked with a 💾 have set up a backend, making it possible to sync your data across multiple devices. * https://mw.lonelil.com by [lonelil](https://github.com/lonelil) * https://mv-web.netlify.app by [chaos](https://github.com/qtchaos) 💾 From b195bc29e4205f38e4a3c2a7c38dc507c84c15be Mon Sep 17 00:00:00 2001 From: qtchaos <72168435+qtchaos@users.noreply.github.com> Date: Mon, 26 Feb 2024 21:30:00 +0200 Subject: [PATCH 6/6] docs: add new instance --- content/0.instances.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/0.instances.md b/content/0.instances.md index f6cd94f..ed6d1b4 100644 --- a/content/0.instances.md +++ b/content/0.instances.md @@ -18,6 +18,7 @@ These instances are maintained by the community and are considered "official", m * https://movie-web-me.vercel.app by [Isra](https://github.com/zisra) * https://bmov.vercel.app by [TheScreechingBagel](https://github.com/TheScreechingBagel) 💾 * https://stream.thehairy.me by [thehairy](https://github.com/thehairy) 💾 +* https://sudo-flix.lol by [itzCozi](https://gitlab.com/itzCozi) 💾 * https://scootydooter.vercel.app by [Toon](https://github.com/Toon-arch) ## Alternatives