* Remove rails default doc files; * Fix outdated documentation (installation and contribution).
21 lines
488 B
Plaintext
21 lines
488 B
Plaintext
scube-server installation
|
|
-------------------------
|
|
|
|
You'll need ruby, rubygems and the bundler gem installed.
|
|
|
|
|
|
* After you have cloned the repository, install required dependencies
|
|
using bundler:
|
|
|
|
`bundle install`
|
|
|
|
* 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:
|
|
|
|
`rails server`
|