X-Git-Url: http://git.squeep.com/?p=websub-hub;a=blobdiff_plain;f=README.md;h=17b47334fb708a2fbc1eabe252d79976ce8fe0d0;hp=33c86749cca1ae140d0e3670cd8305a4a20e8400;hb=HEAD;hpb=8f63eeebd08491cdc82e12f178dc500f6d19d65c diff --git a/README.md b/README.md index 33c8674..41f3e83 100644 --- 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```. >
   > 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