GeoBlacklight for Princeton University Library
git clone https://github.com/pulibrary/pulmap.git
cd pulmap
bundle install
yarn install
- Install Lando DMG from https://github.com/lando/lando/releases
- To start:
rake servers:start
- For test:
bundle exec rspec
- For development:
rails s
- Access Pulmap at http://localhost:3000/
- To stop:
rake servers:stop
orlando stop
The reindex is triggered on the figgy side.
$ ssh deploy@figgy-worker-prod1
$ tmux new -t [yourname]
$ cd /opt/figgy/current
$ BULK=true bundle exec rails c
> GeoResourceReindexer.reindex_geoblacklight
$ ssh deploy@figgy-web-staging1
$ tmux new -t [yourname]
$ cd /opt/figgy/current
$ BULK=true bundle exec rails c
> GeoResourceReindexer.reindex_geoblacklight
It takes a few minutes to get all the complete georesources. Then it invokes the updated event on each, which sends them to rabbitmq.
Then you'll start to see output like "Indexed into GeoBlacklight:..."
We usually run this overnight.
Pulmap can listen for events published on a RabbitMQ fanout exhange. In order to use them, do the following:
- Configure the
events
settings inconfig/pulmap.yml
- Run
WORKERS=GeoblacklightEventHandler rake sneakers:run
This will subscribe pulmap to the events and update geoblacklight records when they're created, updated, or deleted.