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

Latest commit

 

History

History
47 lines (30 loc) · 663 Bytes

README.md

File metadata and controls

47 lines (30 loc) · 663 Bytes

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