Add Miniflux script (#935)

* Add Miniflux script

* Delete ct/headers/miniflux

This will get auto-generated by our func

* Minor fixes to Miniflux scripts

- run `apt update` before `apt upgrade miniflux`
- use selfh.st/icons for logo
- remove `[trusted=yes]` from miniflux source
- remove extra spaces
- change `apt-get` to `apt`

* Move Miniflux DB creds

Move Miniflux database credentials from a separate file, to directly inside of the `/etc/minflux.conf` file.

* Update Miniflux source to be trusted automatically

* Store ~/.pgpass for db backups using pg_dump

* Use GitHub Release binary instead of UNSIGNED apt source

* Add apt -y clean

* Make recommended changes

* Added notes

* Set `LISTEN_ADDR=0.0.0.0:8080` by default

* Finishing touches. Removed some unneeded msg blocks

---------

Co-authored-by: Tobias <96661824+CrazyWolf13@users.noreply.github.com>
Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com>
This commit is contained in:
Omer Naveed
2025-10-30 17:14:51 -05:00
committed by GitHub
parent 44eb138ed4
commit 72ad956cd9
3 changed files with 151 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
{
"name": "Miniflux",
"slug": "miniflux",
"categories": [
13
],
"date_created": "2025-09-24",
"type": "ct",
"updateable": true,
"privileged": false,
"config_path": "/etc/miniflux.conf",
"interface_port": 8080,
"documentation": "https://miniflux.app/docs/index.html",
"website": "https://miniflux.app/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/miniflux-light.webp",
"description": "Miniflux is a minimalist and opinionated feed reader.",
"install_methods": [
{
"type": "default",
"script": "ct/miniflux.sh",
"resources": {
"cpu": 2,
"ram": 2048,
"hdd": 8,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": "admin",
"password": "randomly generated during installation process"
},
"notes": [
{
"text": "Admin password available as `ADMIN_PASSWORD` in `~/miniflux.creds`",
"type": "info"
}
]
}