Skip to content

JustSnow/open-cook

 
 

Repository files navigation

HOW TO INSTALL

Create project dir

mkdir rails4
cd rails4

Clone project

git clone [email protected]:open-cook/open-cook.git

Clone gems repos

git clone [email protected]:open-cook/the_audit.git
git clone [email protected]:the-teacher/the_role.git
git clone [email protected]:the-teacher/the_comments.git
git clone [email protected]:the-teacher/the_storages.git
git clone [email protected]:the-teacher/the_notification.git
git clone [email protected]:the-teacher/the_sortable_tree.git

rails 4 required

gem update rails

Change directory

cd open-cook

Create DB config file

touch config/database.yml

Open config file and puts following config text:

config/database.yml

development:
  adapter: sqlite3
  database: db/development.db

test:
  adapter: sqlite3
  database: db/test.db

Bundle!

bundle

Create DB and test data

rake db:bootstrap_and_seed

DJ run

script/delayed_job start

web server run

bin/rails s

or

bin/rails s -p 3000 -b host.name

tests

rake db:bootstrap RAILS_ENV=test
rspec

rspec spec/requests --format documentation

About

Tasty cms

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 91.5%
  • CSS 4.8%
  • CoffeeScript 2.7%
  • JavaScript 1.0%