From bec0da8ca4633cb5d85daf540718ed0896ee22be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Wed, 14 Apr 2021 16:21:44 +0200 Subject: [PATCH] Update command to execute rake tasks This command might fail if developers have several different versions of the `rake` gem on their system. --- docs/en/installation/local_installation.md | 8 ++++---- docs/es/installation/local_installation.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/en/installation/local_installation.md b/docs/en/installation/local_installation.md index 546535be0..ea6c82024 100644 --- a/docs/en/installation/local_installation.md +++ b/docs/en/installation/local_installation.md @@ -48,10 +48,10 @@ And setup database credentials with your `consul` user in your new `database.yml 7. Run the following [Rake tasks](https://github.com/ruby/rake) to create and fill your local database with the minimum data needed to run the application: ```bash -rake db:create -rake db:setup -rake db:dev_seed -rake db:test:prepare +bin/rake db:create +bin/rake db:setup +bin/rake db:dev_seed +bin/rake db:test:prepare ``` 8. Check everything is fine by running the test suite (beware it might take more than an hour): diff --git a/docs/es/installation/local_installation.md b/docs/es/installation/local_installation.md index de427410a..3b16c1788 100644 --- a/docs/es/installation/local_installation.md +++ b/docs/es/installation/local_installation.md @@ -48,10 +48,10 @@ Y configura los de tu usuario de base de datos `consul` en `database.yml` 7. Ejecuta las siguientes [tareas Rake](https://github.com/ruby/rake) para crear y rellenar tu base de datos local con el mínimo de información necesaria para que la aplicación funcione correctamente: ```bash -rake db:create -rake db:setup -rake db:dev_seed -rake db:test:prepare +bin/rake db:create +bin/rake db:setup +bin/rake db:dev_seed +bin/rake db:test:prepare ``` 8. Comprueba que todo funciona correctamente lanzando la suite de tests (ten en cuenta que podría tardar más de una hora):