X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/650ecfa7df483a9ba4a6959554fb77b9cfdd2144..82a4548ca878d6c597df4178e81fd4e16da7212e:/script/vagrant/setup/provision.sh diff --git a/script/vagrant/setup/provision.sh b/script/vagrant/setup/provision.sh index bfe12a3c6..f6ecd4ed5 100644 --- a/script/vagrant/setup/provision.sh +++ b/script/vagrant/setup/provision.sh @@ -3,12 +3,6 @@ # abort on error set -e -# set locale to UTF-8 compatible. apologies to non-english speakers... -locale-gen en_GB.utf8 -update-locale LANG=en_GB.utf8 LC_ALL=en_GB.utf8 -export LANG=en_GB.utf8 -export LC_ALL=en_GB.utf8 - # make sure we have up-to-date packages apt-get update @@ -16,43 +10,25 @@ apt-get update apt-get upgrade -y # install packages as explained in INSTALL.md -apt-get install -y ruby2.7 libruby2.7 ruby2.7-dev \ - libxml2-dev libxslt1-dev nodejs yarnpkg \ - apache2 apache2-dev build-essential git-core firefox-geckodriver \ - postgresql postgresql-contrib libpq-dev libvips-dev \ +apt-get install -y ruby ruby-dev ruby-bundler \ + libxml2-dev libxslt1-dev nodejs npm \ + build-essential git-core firefox-esr \ + postgresql postgresql-contrib libpq-dev libvips-dev libyaml-dev \ libsasl2-dev libffi-dev libgd-dev libarchive-dev libbz2-dev -gem2.7 install rake -gem2.7 install --version "~> 2.1.4" bundler +npm install --global yarn ## 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 +bundle exec bin/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 sudo -u postgres createuser -s vagrant - sudo -u vagrant createdb -E UTF-8 -O vagrant openstreetmap - sudo -u vagrant createdb -E UTF-8 -O vagrant osm_test fi - -# install PostgreSQL functions -sudo -u vagrant psql -d openstreetmap -f db/functions/functions.sql -################################################################################ -# *IF* you want a vagrant image which supports replication (or perhaps you're -# using this script to provision some other server and want replication), then -# uncomment the following lines (until popd) and comment out the one above -# (functions.sql). -################################################################################ -#pushd db/functions -#sudo -u vagrant make -#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" -#popd - - # set up sample configs if [ ! -f config/database.yml ]; then sudo -u vagrant cp config/example.database.yml config/database.yml @@ -61,6 +37,8 @@ if [ ! -f config/storage.yml ]; then cp config/example.storage.yml config/storage.yml fi touch config/settings.local.yml +# create the databases +sudo -u vagrant bundle exec rails db:create # migrate the database to the latest version -sudo -u vagrant bundle exec rake db:migrate +sudo -u vagrant bundle exec rails db:migrate popd