X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a7781f62cf28d8e2f6fffbd2787a1345b7622920..ddb140f3877007249b8bac30dda575e56a1586f9:/script/vagrant/setup/provision.sh diff --git a/script/vagrant/setup/provision.sh b/script/vagrant/setup/provision.sh index 4c8adaa99..1abcba43d 100644 --- a/script/vagrant/setup/provision.sh +++ b/script/vagrant/setup/provision.sh @@ -16,18 +16,20 @@ apt-get update apt-get upgrade -y # install packages as explained in INSTALL.md -apt-get install -y ruby2.5 libruby2.5 ruby2.5-dev \ - libmagickwand-dev libxml2-dev libxslt1-dev nodejs \ +apt-get install -y ruby2.7 libruby2.7 ruby2.7-dev \ + libmagickwand-dev libxml2-dev libxslt1-dev nodejs yarnpkg \ apache2 apache2-dev build-essential git-core firefox-geckodriver \ - postgresql postgresql-contrib libpq-dev \ + postgresql postgresql-contrib libpq-dev libvips-dev \ libsasl2-dev imagemagick libffi-dev libgd-dev libarchive-dev libbz2-dev -gem2.5 install rake -gem2.5 install --version "~> 1.16.2" bundler +gem2.7 install rake +gem2.7 install --version "~> 2.1.4" bundler ## install the bundle necessary for openstreetmap-website pushd /srv/openstreetmap-website # do bundle install as a convenience bundle install --retry=10 --jobs=2 +# do yarn install as a convenience +bundle exec rake yarn:install # create user and database for openstreetmap-website db_user_exists=`sudo -u postgres psql postgres -tAc "select 1 from pg_roles where rolname='vagrant'"` if [ "$db_user_exists" != "1" ]; then @@ -50,9 +52,7 @@ sudo -u vagrant psql -d openstreetmap -f db/functions/functions.sql ################################################################################ #pushd db/functions #sudo -u vagrant make -#sudo -u vagrant psql openstreetmap -c "CREATE OR REPLACE FUNCTION maptile_for_point(int8, int8, int4) RETURNS int4 AS '/srv/openstreetmap-website/db/functions/libpgosm.so', 'maptile_for_point' LANGUAGE C ST#RICT" #sudo -u vagrant psql openstreetmap -c "CREATE OR REPLACE FUNCTION tile_for_point(int4, int4) RETURNS int8 AS '/srv/openstreetmap-website/db/functions/libpgosm.so', 'tile_for_point' LANGUAGE C STRICT" -#sudo -u vagrant psql openstreetmap -c "CREATE OR REPLACE FUNCTION xid_to_int4(xid) RETURNS int4 AS '/srv/openstreetmap-website/db/functions/libpgosm.so', 'xid_to_int4' LANGUAGE C STRICT" #popd @@ -60,6 +60,9 @@ sudo -u vagrant psql -d openstreetmap -f db/functions/functions.sql if [ ! -f config/database.yml ]; then sudo -u vagrant cp config/example.database.yml config/database.yml fi +if [ ! -f config/storage.yml ]; then + cp config/example.storage.yml config/storage.yml +fi touch config/settings.local.yml # migrate the database to the latest version sudo -u vagrant bundle exec rake db:migrate