This is an open source recipes web site. I currently run it in production at http://recipes.akofink.com.
Installation is performed in four steps:
- Clone from Git
- Build Dependencies
- Set Up Database
- Start the Server
git clone https://github.com/akofink/akrecipes.git
cd akrecipes
Install ruby 2.1 (rbenv or rvm)
gem install bundler
bundle install
Use postgresql. On OS X, I use Postgres.app.
Set up database user:
create user rails superuser;
From the shell:
cp config/database.yml.example config/database.yml
bundle exec rake db:drop db:setup db:test:prepare
rails server
Now visit http://localhost:3000