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 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