1
0
Fork 1
mirror of https://github.com/0x2E/fusion.git synced 2025-06-09 17:44:56 +09:00
A lightweight, self-hosted friendly RSS reader
Find a file
2024-03-18 18:17:43 +08:00
.github/workflows fix: add the missing .git/ for fe build 2024-03-17 21:00:09 +08:00
api refactor: derive context from user's request 2024-03-18 18:17:43 +08:00
assets doc: add screenshot 2024-03-08 13:18:45 +08:00
cmd/server fix: add debug mode 2024-03-08 13:19:32 +08:00
conf fix: add debug mode 2024-03-08 13:19:32 +08:00
frontend feat: show version in page footer 2024-03-17 20:13:03 +08:00
model fix: item list order 2024-03-16 23:59:16 +08:00
pkg/httpx refactor: derive context from user's request 2024-03-18 18:17:43 +08:00
repo fix: item list order 2024-03-16 23:59:16 +08:00
server refactor: derive context from user's request 2024-03-18 18:17:43 +08:00
service refactor: derive context from user's request 2024-03-18 18:17:43 +08:00
.dockerignore fix: add the missing .git/ for fe build 2024-03-17 21:00:09 +08:00
.env chore: add dockerfile and doc 2024-03-06 20:48:55 +08:00
.gitignore init 2024-03-06 16:54:13 +08:00
.goreleaser.yaml fix: release action 2024-03-06 23:09:24 +08:00
Dockerfile fix: add the missing .git/ for fe build 2024-03-17 21:00:09 +08:00
go.mod chore: update dependence 2024-03-14 11:38:50 +08:00
go.sum chore: update dependence 2024-03-14 11:38:50 +08:00
LICENSE Initial commit 2024-03-06 16:43:43 +08:00
README.md refactor: fetch item-list data by sveltekit load 2024-03-14 00:19:22 +08:00
scripts.sh fix: scripts 2024-03-06 23:18:46 +08:00

Fusion

preview

Fusion is an RSS aggregator and reader with:

  • Lightweight, high performance, easy to deploy
  • Support RSS, Atom, JSON feeds
  • Import/Export OPML
  • Feed groups

Installation

1. Docker

docker run -it -d -p 8080:8080 -v $(pwd)/fusion:/data \
      -e PASSWORD="123456" \
      rook1e404/fusion

Or you can build docker image from scratch:

docker build -t rook1e404/fusion .

2. Pre-build binary

Download an release, edit .env, then run:

./fusion

3. Build from source

  1. Prepare dependencies: Go 1.22, Node 21 with NPM
  2. Build
./scripts.sh build
  1. Deploy
cd build

# edit .env

# run
./fusion

Credits