From 4660b3c22c9eed3e5479dda5449f709c98f37767 Mon Sep 17 00:00:00 2001 From: Thibault Jouan Date: Tue, 26 Jul 2011 19:13:37 +0000 Subject: [PATCH] Add doc/INSTALL text file --- doc/INSTALL | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 doc/INSTALL diff --git a/doc/INSTALL b/doc/INSTALL new file mode 100644 index 0000000..3ad7c51 --- /dev/null +++ b/doc/INSTALL @@ -0,0 +1,23 @@ +scube installation +------------------ + + You'll need ruby, rubygems and bundler gem installed. + + +* After you have cloned the repository, install required dependencies + using bundler: + + `bundle install` + +* Alternatively, you can run `bundle check` and manually install the + missing dependencies. + +* Then you'll need to create the database and run the migrations. Edit + config/database.yml to suit your needs and execute the db:migrate + rake task using bundler: + + `bundle exec rake db:migrate` + +* Eventually you can launch the application: + + `./script/rails server`