akofink / recipes

A rails recipes sharing site
0 stars 1 forks source link

akRecipes

Build Status Code Climate Coverage Status

This is an open source recipes web site. I currently run it in production at http://recipes.akofink.com.

To Install

Installation is performed in four steps:

  1. Clone from Git
  2. Build Dependencies
  3. Set Up Database
  4. Start the Server

Clone from Git

git clone https://github.com/akofink/akrecipes.git
cd akrecipes

Build Dependencies

Install ruby 2.1 (rbenv or rvm)

gem install bundler
bundle install

Set Up Database

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

Start the Server

rails server

Now visit http://localhost:3000

Markdown Parsing