]> git.openstreetmap.org Git - rails.git/blobdiff - INSTALL.md
Update bundle
[rails.git] / INSTALL.md
index 6815bab1fbdf879fffe5e2f9b163181987a25256..ea892ae29da174cd58f4972aa4a17a5c2e523eb6 100644 (file)
@@ -33,7 +33,7 @@ These can be installed on Ubuntu 20.04 or later with:
 sudo apt-get update
 sudo apt-get install ruby2.7 libruby2.7 ruby2.7-dev \
                      libvips-dev libxml2-dev libxslt1-dev nodejs \
-                     apache2 apache2-dev build-essential git-core firefox-geckodriver \
+                     build-essential git-core firefox-geckodriver \
                      postgresql postgresql-contrib libpq-dev libsasl2-dev \
                      libffi-dev libgd-dev libarchive-dev libbz2-dev yarnpkg
 sudo gem2.7 install bundler
@@ -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