Skip to content

Instantly share code, notes, and snippets.

@taylorlapeyre
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save taylorlapeyre/9163197 to your computer and use it in GitHub Desktop.

Select an option

Save taylorlapeyre/9163197 to your computer and use it in GitHub Desktop.
Guides for developing our web application.

The Things

The Language

Ruby - a dynamic scripting language with a focus on simplicity

The Framework

Rails - a popular MVC web framework built on ruby

The Database

PostgreSQL - a fast and secure relational database with a large following

The Server

Heroku - a free-to-use cloud application platform focusing on hosting web applications

The Version Control System

Git - a very popular distributed version control system

GitHub - a git repository hosting service

Getting Started

  1. Open a terminal and change to the repository directory
$ pwd
/Users/yourusername
$ cd path/to/repo
  1. Make sure that all required packages are installed
$ bundle install
  1. Make sure that all database migrations have been run
$ bundle exec rake db:migrate
  1. Start up the rails server
$ rails server

Other Useful Software

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment