X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/bd93eafdcb14f89f21691c8b7095383f60a61cf7..216e2493edde7d9601fdb508a8835b93ec9d3c25:/script/vagrant/setup/provision.sh diff --git a/script/vagrant/setup/provision.sh b/script/vagrant/setup/provision.sh index e10e144a8..f19234a8e 100644 --- a/script/vagrant/setup/provision.sh +++ b/script/vagrant/setup/provision.sh @@ -16,26 +16,23 @@ 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 \ + 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 # set up sample configs @@ -46,6 +43,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