Personal reading list.
- ⚒️ All content files are located in Supabase;
- 👨🚀 Built on top of Astro;
- ✨ Uses Tailwind CSS;
CREATE TABLE articles (
id SERIAL PRIMARY KEY,
name TEXT NOT NULL,
topic TEXT NOT NULL,
title TEXT NOT NULL,
url TEXT NOT NULL,
favorite BOOLEAN NOT NULL,
tags TEXT[] NOT NULL,
status TEXT NOT NULL,
);[INFO] Yep, only one table.
