From 7a85ce0c12cf4d75561c35e2ff28e718a390d622 Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 26 Apr 2023 16:36:22 +0100 Subject: [PATCH] Use rails to migrate database for vagrant This brings the vagrant provisioning script into line with the installation notes, docker and CI. --- script/vagrant/setup/provision.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/script/vagrant/setup/provision.sh b/script/vagrant/setup/provision.sh index e114f4616..dfca85e79 100644 --- a/script/vagrant/setup/provision.sh +++ b/script/vagrant/setup/provision.sh @@ -21,7 +21,6 @@ apt-get install -y ruby2.7 libruby2.7 ruby2.7-dev \ apache2 apache2-dev build-essential git-core firefox-geckodriver \ postgresql postgresql-contrib libpq-dev libvips-dev \ libsasl2-dev libffi-dev libgd-dev libarchive-dev libbz2-dev -gem2.7 install rake gem2.7 install --version "~> 2.1.4" bundler ## install the bundle necessary for openstreetmap-website @@ -47,5 +46,5 @@ if [ ! -f config/storage.yml ]; then fi touch config/settings.local.yml # migrate the database to the latest version -sudo -u vagrant bundle exec rake db:migrate +sudo -u vagrant bundle exec rails db:migrate popd -- 2.43.2