Fetch and save entry HTML content with metadata

And render the extracted HTML on the entry page in the frontend.
This commit is contained in:
2023-06-07 01:06:03 -04:00
parent 786f3a194f
commit 3f29138bd1
7 changed files with 516 additions and 12 deletions

View File

@@ -18,6 +18,7 @@ CREATE TABLE IF NOT EXISTS "entries" (
"title" VARCHAR(255),
"url" VARCHAR(2048) NOT NULL,
"description" TEXT,
"html_content" TEXT,
"feed_id" INTEGER REFERENCES "feeds"(id) NOT NULL,
"created_at" timestamp(3) NOT NULL,
"updated_at" timestamp(3) NOT NULL,