/hydra-demo

Hydra with blacklight demo web application

Primary LanguageRuby

hydra-demo

Hydra with backlight demo web application

Documents

System Requirements

Your system should have the following installed before beginning the walkthrough

Running hydra-demo

Install Ruby and Rails using RVM

$ curl -sSL https://get.rvm.io | bash -s stable --ruby
$ curl -sSL https://get.rvm.io | bash -s stable --rails
$ git clone https://github.com/piyapongch/hydra-demo.git
$ cd hydra-demo
$ rails g hydra:jetty*

* if you are having problem with writing tmp file, probably you do not have unzip installed. to install it using command below

$ sudo apt-get install unzip

Start application servers

$ rake jetty:start
$ rails server -d

Blacklight User Interface

Stop application servers

$ kill -9 $(lsof -i :3000 -t)
$ rake jetty:stop