Postgres setup
createdb blog
psql blog
CREATE TABLE articles (
id uuid PRIMARY KEY,
created timestamp,
updated timestamp,
slug character varying(50),
title text,
content text
);
CREATE ROLE blog_author PASSWORD 'secret';
GRANT ALL ON articles TO blog_author;
ALTER ROLE blog_author WITH LOGIN;
git clone https://github.com/Rushi98/csharp-blog
cd csharp-blog
dotnet run