Read in other languages: Español, Français, 简体中文
ReactFlux is a third-party web frontend for Miniflux, aimed at providing a more user-friendly reading experience.
Key features include:
Try ReactFlux with our online demo instance.
See how ReactFlux looks in different themes:
ReactFlux is built with React and generates a set of static web files after building, which can be directly deployed on Cloudflare Pages.
You can deploy it on Cloudflare Pages by selecting Framework preset
as Create React App
.
You can download the pre-built files from the gh-pages
branch and deploy them to any static hosting service that supports single-page applications (SPA).
Make sure to configure URL rewriting to redirect all requests to index.html
.
If you are deploying using Nginx, you might need to add the following configuration:
location / {
try_files $uri $uri/ /index.html;
}
docker run -p 2000:2000 electh/reactflux
Or using Docker Compose:
docker-compose up -d
To help us translate ReactFlux into your language, please contribute to the locales
folder and send a pull request.
Additionally, you need to add a README file for the respective language and reference it in all existing README files.
You should also modify parts of the source code to include the i18n language packages for Arco Design
and Day.js
.
For detailed changes, please refer to the modifications in PR #120.
Thanks to all the contributors who have made this project more awesome!
Made with contrib.rocks.