From f3e42bc1c361f932ccbc0e40d3692cdbb77ee437 Mon Sep 17 00:00:00 2001 From: Justin Wind Date: Sat, 21 Jan 2023 11:25:03 -0800 Subject: [PATCH] fix doc typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 17b4733..41f3e83 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ One way of deploying this server is behind nginx, with the pm2 package to manage - Prepare PostgreSQL with a user and database, using e.g. ```psql```. >
   > CREATE ROLE websubhub WITH CREATEDB LOGIN PASSWORD 'mypassword';
-  > GRANT websubhub TO postgres
+  > GRANT websubhub TO postgres;
   > CREATE DATABASE websubhub OWNER=websubhub;
   > GRANT ALL PRIVILEGES ON DATABASE websubhub TO websubhub;
   > \c websubhub
-- 
2.43.2