scherztc / nurax

Vanilla-plus Hyrax app for testing and tire-kicking

Home Page:https://nurax-dev.curationexperts.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

README

This is an application used for testing the state of Hyrax. The master branch is pinned to Hyrax master, and is automatically deployed to nurax-dev.curationexperts.com once per day. The nurax-stable branch is pinned to the latest stable release of Hyrax, and is deployed much less often, only when there has been a new release, to nurax-stable.curationexperts.com.

Running with Docker

See the docker notes to learn about running Nurax in Docker.

Infrastructure

The nurax servers are built using the ansible-samvera ansible roles. These servers are maintained by Data Curation Experts as a service to the Samvera Community.

Auto-deploy process

There is a cron-job on nurax-dev running this script once per day:

#!/usr/local/bin/ruby

# Get the latest nurax master
# Make a branch with today's date and update hyrax
# Push and deploy that branch
# Delete the branch

today = Time.now.strftime('%Y-%m-%e-%H-%M')
`cd /home/ubuntu/nurax; git checkout master; git pull; git checkout -b "#{today}"`
`cd /home/ubuntu/nurax; bundle update hyrax`
`cd /home/ubuntu/nurax; git commit -a -m 'Daily update for "#{today}"'; git push --set-upstream origin #{today}`
`cd /home/ubuntu/nurax; BRANCH_NAME="#{today}" cap nurax-dev deploy`
`cd /home/ubuntu/nurax; git checkout master; git push origin --delete "#{today}"`
`cd /home/ubuntu/nurax; git checkout master; git branch -D "#{today}"`

Questions

Please direct questions about this code or the servers where it runs to the #nurax channel on Samvera slack.

About

Vanilla-plus Hyrax app for testing and tire-kicking

https://nurax-dev.curationexperts.com

License:Other


Languages

Language:CSS 69.0%Language:JavaScript 21.3%Language:Ruby 8.0%Language:XSLT 1.0%Language:HTML 0.6%Language:Dockerfile 0.1%Language:Shell 0.0%