Merge branch 'v1.3-dev' as v1.3.11
[websub-hub] / README.md
index 33c86749cca1ae140d0e3670cd8305a4a20e8400..41f3e83dcd0d44661a1190f9fe3fab874d9292d6 100644 (file)
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ An IndieAuth profile may be used to view any topics associated with that profile
 
 One way of deploying this server is behind nginx, with the pm2 package to manage the server process, and a local postgres database.  Some details on this are presented here as a rough guide to any parts of this stack which may be unfamiliar.
 
-- Have NodeJS 12-ish available.
+- Have NodeJS 14-ish available.
 - Have PostgreSQL available.
 - Clone the server repository.  
   ```git clone https://git.squeep.com/websub-hub```  
@@ -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