From 5e33a2a66657e1754c8f6b2ecf0254cd8a294b35 Mon Sep 17 00:00:00 2001 From: Daniel Wright Date: Mon, 12 Oct 2015 14:56:37 -0400 Subject: [PATCH 1/2] Convenience Shell Scripts This commit adds simple shell scripts to make bootstrapping the project, and compiling/serving the project files more convenient and consistent. (cherry picked from commit 61c9a3f36f0b28fa8ae982e12d600ce69056562c) --- script/bootstrap | 8 ++++++++ script/server | 6 ++++++ 2 files changed, 14 insertions(+) create mode 100755 script/bootstrap create mode 100755 script/server diff --git a/script/bootstrap b/script/bootstrap new file mode 100755 index 0000000..a9dc154 --- /dev/null +++ b/script/bootstrap @@ -0,0 +1,8 @@ +#!/bin/sh +# Make sure local dependencies are met. + +cd "$(dirname $0)"/.. + +bundle install && \ + npm install && \ + bower install diff --git a/script/server b/script/server new file mode 100755 index 0000000..fde7d1c --- /dev/null +++ b/script/server @@ -0,0 +1,6 @@ +#!/bin/sh +# Start the development server. + +cd $(dirname "$0")/.. + +bundle exec gulp serve From 9f0f0d41e584558b09512e3edea538d810482f84 Mon Sep 17 00:00:00 2001 From: Daniel Wright Date: Wed, 9 Mar 2016 10:40:59 -0500 Subject: [PATCH 2/2] Barest Scaffolding for User Stories Documentation This adds the skinniest skeleton for documentation of our user-stories process. It will, in subsequent commits, be expanded, and potentially even split into multiple pages. This initial commit, though, provides a roadmap for the structure and intention of the eventual output. --- .../2016-03-07-user-stories.md | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 _posts/how-we-manage-projects/2016-03-07-user-stories.md diff --git a/_posts/how-we-manage-projects/2016-03-07-user-stories.md b/_posts/how-we-manage-projects/2016-03-07-user-stories.md new file mode 100644 index 0000000..05b88c9 --- /dev/null +++ b/_posts/how-we-manage-projects/2016-03-07-user-stories.md @@ -0,0 +1,28 @@ +--- +layout: post +title: "User Stories" +published: true +tags: +categories: how-we-manage-projects +order: 1 +--- + +# User Stories + +## Overview + +### Who? + +### Where? + +### When? + +## Writing Your First Story + +## Assigning Points + +## Tracking Velocity + +## Iteration Planning + +## Iteration Retrospective