Fix
Update README
v1.2.1
Self-hostable "read-it-later" Web app.
Demo site is available here.
Note that this demo site will be reset every hour.
ripgrep
postcss
to 8.4.31.setInterval
/ clearInterval
in article pages.# pwd: /path/to/databases
echo "
CREATE TABLE IF NOT EXISTS articles (
id TEXT PRIMARY KEY,
url TEXT,
title TEXT,
html TEXT,
cover TEXT,
beginning TEXT,
position INTEGER,
progress INTEGER,
archived INTEGER NOT NULL DEFAULT 0 CHECK (archived IN (0, 1)),
liked INTEGER NOT NULL DEFAULT 0 CHECK (liked IN (0, 1)),
timestamp DATETIME
);
CREATE TABLE IF NOT EXISTS tags (
id INTEGER PRIMARY KEY,
ulid TEXT,
tag TEXT NOT NULL
);
" | sqlite3 .sqlite
mkdir .index
docker compose up -d
will do the rest.docker-compose.yml
example:
version: '3'
services:
leaf:
image: docker.io/kyoheiudev/leaf:1.2.1
container_name: leaf
environment:
- LEAF_DATA=/leaf/databases
- LEAF_API_TOKEN=STRING_USED_WHEN_ADDING_NEW_ARTICLE_VIA_API
volumes:
- /path/to/databases:/leaf/databases
- /etc/localtime:/etc/localtime:ro
ports:
- 3000:3000
By default this app is not protected by any means so that you can use your own auth process.
Via the client API you can add a new article:
POST /api/create
Content-Type: application/json
Authorization: LEAF_API_TOKEN
{
"url": "https://example.com"
}
npm install
npm run dev