X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/bd93eafdcb14f89f21691c8b7095383f60a61cf7..d41d52877ed68902c45231a89715470774e7f944:/INSTALL.md diff --git a/INSTALL.md b/INSTALL.md index 6815bab1f..9ea442476 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -137,7 +137,7 @@ bundle install We use [Yarn](https://yarnpkg.com/) to manage the Node.js modules required for the project. ``` -bundle exec rake yarn:install +bundle exec bin/yarn install ``` ## Prepare local settings file @@ -185,7 +185,7 @@ exit To create the three databases - for development, testing and production - run: ``` -bundle exec rake db:create +bundle exec rails db:create ``` ### Database structure @@ -193,7 +193,7 @@ bundle exec rake db:create To create all the tables, indexes and constraints, run: ``` -bundle exec rake db:migrate +bundle exec rails db:migrate ``` ## Running the tests