fix doc typo
authorJustin Wind <justin.wind+git@gmail.com>
Sat, 21 Jan 2023 19:25:03 +0000 (11:25 -0800)
committerJustin Wind <justin.wind+git@gmail.com>
Sat, 21 Jan 2023 19:25:03 +0000 (11:25 -0800)
README.md

index 17b47334fb708a2fbc1eabe252d79976ce8fe0d0..41f3e83dcd0d44661a1190f9fe3fab874d9292d6 100644 (file)
--- 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```.  
   > <pre>
   > 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