From 996885b8c8488a6700d42b2e51d456521401ea13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Wed, 7 Aug 2024 15:03:52 +0200 Subject: [PATCH] Fix typos in local installation instructions --- docs/en/installation/local_installation.md | 2 +- docs/en/installation/macos.md | 4 ++-- docs/en/installation/windows.md | 2 +- docs/es/installation/macos.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/en/installation/local_installation.md b/docs/en/installation/local_installation.md index da81b556e..d53f00a8d 100644 --- a/docs/en/installation/local_installation.md +++ b/docs/en/installation/local_installation.md @@ -1,6 +1,6 @@ # Local installation -Before installing Consul Democracy and having it up and running make sure you all [prerequisites](prerequisites.md) installed. +Before installing Consul Democracy and having it up and running make sure you have all [prerequisites](prerequisites.md) installed. 1. First, clone the [Consul Democracy Github repository](https://github.com/consuldemocracy/consuldemocracy/) and enter the project folder: diff --git a/docs/en/installation/macos.md b/docs/en/installation/macos.md index 6734b5261..0497ae361 100644 --- a/docs/en/installation/macos.md +++ b/docs/en/installation/macos.md @@ -54,7 +54,7 @@ postgres -D /usr/local/var/postgres At this point we're supposed to have postgres correctly installed and a default user will automatically be created (whose name will match our username). This user hasn't got a password yet. -If we run `psql` we'll login into the postgres console with the default user. Probably it will fail since its required that a default database exists for that user. We can create it by typing: +If we run `psql` we'll login into the postgres console with the default user. It will probably fail since it's required that a default database exists for that user. We can create it by typing: ```bash createdb 'your_username' @@ -62,7 +62,7 @@ createdb 'your_username' If we run `psql` again we should now get access to postgres console. With `\du` you can see the current users list. -In case you want to set a password for your user you can make it through postgres console by: +In case you want to set a password for your user you can make it through the postgres console by: ```sql ALTER USER your_username WITH PASSWORD 'your_password'; diff --git a/docs/en/installation/windows.md b/docs/en/installation/windows.md index 9707f862c..a79be260f 100644 --- a/docs/en/installation/windows.md +++ b/docs/en/installation/windows.md @@ -1,3 +1,3 @@ # Windows -Windows is not yet officially supported. Please install [Virtual Box](https://www.virtualbox.org/) to setup a virtual machine in [Linux](prerequisites.md) or use [Docker](docker.md). +Windows is not officially supported yet. Please install [Virtual Box](https://www.virtualbox.org/) to setup a virtual machine in [Linux](prerequisites.md) or use [Docker](docker.md). diff --git a/docs/es/installation/macos.md b/docs/es/installation/macos.md index b1216f688..f9d55fb2e 100644 --- a/docs/es/installation/macos.md +++ b/docs/es/installation/macos.md @@ -60,7 +60,7 @@ Si ejecutamos `psql` accederemos a la consola de postgres con el usuario por def createdb 'tu_nombre_de_usuario' ``` -Si ahora ejecutamos `psql` de nuevo deberíamos poder acceder correctamente a la consola de postgres. Si sobre la consola de postgres ejecutas `\du` puede ver la lista de usuarios actual. +Si ahora ejecutamos `psql` de nuevo deberíamos poder acceder correctamente a la consola de postgres. Si sobre la consola de postgres ejecutas `\du` puedes ver la lista de usuarios actual. En el caso de que quieras asignarte una contraseña puedes hacerlo desde la consola de postgres con: