Install system dependencies
- Setup your workstation for Rails development first
- Solr version >= 5.x (tested up to 7.0.0)
- Fedora Commons digital repository version >= 4.5.1 (tested up to 4.7.5)
- A SQL RDBMS (MySQL, PostgreSQL), though note that SQLite will be used by default if you're looking to get up and running quickly
- libmysqlclient-dev (if running MySQL as RDBMS)
- libsqlite3-dev (if running SQLite as RDBMS)
- Redis, a key-value store
- ImageMagick with JPEG-2000 support
- FITS version 1.0.x (1.0.5 is known to be good)
- LibreOffice
- ffmpeg
- Clone this repository:
git clone https://github.com/DigitalWPI/digitalwpi ./path/to/local
- Note: Solr will not run properly if there are spaces in any of the directory names above it
(e.g. /user/my apps/digitalwpi/)
- Note: Solr will not run properly if there are spaces in any of the directory names above it
- Change to the application's directory: e.g.
cd ./path/to/local
- Make sure you are on the develop branch:
git checkout master
- Install bundler (if needed):
gem install bundler
- Run bundler:
bundle install
- Start fedora:
fcrepo_wrapper -p 8984
- Start solr:
solr_wrapper -d solr/config/ --collection_name hydra-development
- Start redis:
redis-server
- Run the database migrations:
bundle exec rake db:migrate
- Start the rails server:
rails server
- Visit the site at [http://localhost:3000] (http://localhost:3000)
- Create default admin set:
bin/rails hyrax:default_admin_set:create
- Load workflows:
bin/rails hyrax:workflow:load
- Creating default admin set should also load the default workflow. You can load, any additional workflows defined, using this command.
- Assigning admin role to user from
rails console
:admin = Role.create(name: "admin")
admin.users << User.find_by_user_key( "your_admin_users_email@fake.email.org" )
admin.save
- Read more.
This software has been developed by and is brought to you by the Samvera community. Learn more at the Samvera website