Skip to content

Instantly share code, notes, and snippets.

View carlcrott's full-sized avatar

Carl Crott carlcrott

  • <( '.' <) <( '.' )> (> '.' )>
  • San Francisco CA
View GitHub Profile

Here is an essay version of my class notes from Class 1 of CS183: Startup. Errors and omissions are my own. Credit for good stuff is Peter’s entirely.

CS183: Startup—Notes Essay—The Challenge of the Future

Purpose and Preamble

@carlcrott
carlcrott / gist:5716574
Last active December 18, 2015 03:09 — forked from chrislerum/gist:566697
Code changes should only be pushed to github if all tests are green.
Below is a common work-flow for a team working with a central repo.
Several variations are possible, but if unsure, please go by this:
1. Pull
$ git pull
... or, if this is your first time ever getting the code, do:
$ git clone git@github.com:our_repo/our_repo.git
Code changes should only be pushed to github if all tests are green.
Below is a common work-flow for a team working with a central repo. several variations are possible, but if unsure, please go by this:
1. if you are working from a Pivotal Tracker story, click "start" on that story
2. git pull (or, if this is your first time ever getting the code, do git clone git@github.com:our_repo/our_repo.git to get a local copy of the repo)
3. rake db:migrate
4. rake db:test:prepare
5. spec spec