Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juntaki/flickake
Self-hosted video library like Netflix
https://github.com/juntaki/flickake
movie rails5 self-hosted video vuejs2
Last synced: about 2 months ago
JSON representation
Self-hosted video library like Netflix
- Host: GitHub
- URL: https://github.com/juntaki/flickake
- Owner: juntaki
- Archived: true
- Created: 2017-07-27T11:24:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-18T09:52:49.000Z (almost 7 years ago)
- Last Synced: 2024-09-18T01:04:17.920Z (about 2 months ago)
- Topics: movie, rails5, self-hosted, video, vuejs2
- Language: Ruby
- Homepage: https://hub.docker.com/r/juntaki/flickake/
- Size: 24.5 MB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flickake
Self-hosted movie library like Netflix, can be used with simple configuraion and little setting.
![Demo](https://res.cloudinary.com/juntaki/image/upload/v1510982247/flickake_demo.webp)
## How to use
### Deploy with Docker
Just specify path to your movie library directory.
Your flickake will deployed to http://hostname:3000/~~~
docker pull juntaki/flickake
docker run -d --name=flickake -p 3000:3000 \
-e SECRET_KEY_BASE=YOUR_SECRET \
-v /path/to/movie_library:/app/files juntaki/flickake \
-v /path/to/log:/app/log
~~~### Scan / Rescan movies in the library
Click "Scan" in navigation bar.
or run the following command-line.
~~~
docker exec flickake rails movies:scan
~~~