Skip to content

Sphaerus/Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README

EPI, databases 2, project

MANUAL

Setting up Ruby&Rails

  1. Install Ruby Version Manager

https://rvm.io/
  1. Install Ruby 2.0

$ rvm install 2.0.0
  1. Set Ruby 2.0 as default Ruby version

$ rvm use 2.0.0
  1. Install Ruby on Rails

$ gem install rails

Setting up application Inside application directory:

  1. Install all the necessary gems

$ bundle install
  1. Create database

$ rake db:create
  1. Run migrations

$ rake db:migrate
  1. Run seeds (for instant admin account)

$ rake db:seed
Admin account (login: [email protected], password: secret111) will now be available
  1. Turn app on

$ rails s
Application will now be ready to use under "localhost:3000"

Enjoy!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published