Skip to content
This repository has been archived by the owner on Nov 20, 2019. It is now read-only.

rubyjax/twodo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TwoDo

Staging site: http://twodo.staging.rubyjax.org

Production site: http://twodo.rubyjax.org

A RubyJax project to facilitate pair programming

Setup for Development

  • Clone the repo, set up gems.
$ git clone http://github.com/rubyjax/twodo
$ cd path/to/twodo
$ bundle install
  • Set up the database
$ rake db:setup
  • Run the server
$ rails s

Developing new features

  • Pull from master
$ git pull origin master --rebase
  • Create a feature branch
$ git branch <name-of-branch>
  • Start your development

Deployment