Skip to content

aggarwal/GrinnellPlans

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Grinnell Plans

Quickstart

  1. Install git.

  2. Install ruby & rails.

  3. bundler will manage the gems for the project

    sudo gem install bundler
    
  4. Checkout the project

    git clone git@github.com:annaswims/GrinnellPlans.git
    cd GrinnellPlans
    
  5. Install the gems that are specified in Gemfile

    bundle install
    
  6. Create the database (specified in database yml) and seed it with data

    rake db:setup
    
  7. Start the server. GrinnellPlans will be at localhost:3000

    rails server
    

Helpful Tasks

  • To generate diagrams (in doc/):

    rake diagram:all
    

    diagrams are also generated after rake db:migrate.

  • To annotate models (that is, to add the column info to the models as comments):

    annotate
    
  • To use the Rails console (for debugging, playing with data, etc):

    rails console
    
  • To pretty up the display of data when you’re using the console:

    Hirb.enable
    
  • to run rspec tests bundle exec rake spec

  • to run non-rspec tests rake test

About

Replicate the features of GrinnellPlans.com

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 96.3%
  • JavaScript 3.7%