Skip to content

Latest commit

 

History

History
61 lines (52 loc) · 3.45 KB

README.md

File metadata and controls

61 lines (52 loc) · 3.45 KB

film.kace.dev

film.kace.dev is an online streaming website for movies and tv shows.
a predecessor to the late movie-web.

philosophy

"culture shouldn't exist only for those who can afford it."

features

  • automatic saving of progress - optionally synced to an account.
  • bookmark shows or movies, keep track of what you want to watch.
  • minimalistic interface that only shows whats required - no algorithm to consume you.
  • no ads! - enjoy ad free content watching.

extension

due to the removal of the extension from both chromium and firefox the extension must now be installed locally.
extension installation guide can be found here.

disclaimer

film.kace.dev does not host any files, it merely links to 3rd party services. Legal issues should be taken up with the file hosts and providers. film.kace.dev is not responsible for any media files shown by the video providers.

technologies

react vite html css ts

links And resources

service link source code
Sudo-Flix Docs sudo-docs source code
Extension extension source code
Proxy sudo-proxy source code
Backend sudo-backend source code
Frontend sudo-flix source code
Weblate sudo-weblate source code

running Locally

Type the following commands into your terminal / command line to run Sudo-Flix locally

git clone https://github.com/sussy-code/smov.git
cd smov
git pull
pnpm install
pnpm run dev

Then you can visit the local instance here or, at local host on port 5173.

updating a sudo-flix Instance

To update a sudo-flix instance you can type the below commands into a terminal at the root of your project.

git remote add upstream https://github.com/sussy-code/smov.git
git fetch upstream # Grab the contents of the new remote source
git checkout <YOUR_MAIN_BRANCH>  # Most likely this would be `origin/main`
git merge upstream/main
# * Fix any conflicts present during merge *
git add .  # Add all changes made during merge and conflict fixing
git commit -m "Update sudo-flix instance (merge upstream/main)"
git push  # Push to YOUR repository