This is just Trey's experiments on how we might look towards separating the Hydra/Curation Concerns stack from Fedora.
- Install Postgres on your machine. If you have homebrew on OS X you can run the following steps:
brew install postgres
brew services start postgresql
gem install pg -- --with-pg-config=/usr/local/bin/pg_config
cp config/database.yml.example config/database.yml
- Edit
config/database.yml
so that the username is the name you use to log into your Mac
bundle install
rake db:create:all
rake db:migrate
- Start a dev server via
rake server:development
- Bring up a Rails server via
rails s
or a console viarails c