Skip to content

Instantly share code, notes, and snippets.

Workflow

This document outlines our branch naming conventions and our work flow with git. This document aims to answer the questions.

  • How do we start work on a new feature
  • How do we start work on a hot fix
  • How do we start work on a bug
  • How do we deploy to our testing/production env
  • How do we release

Dev Setup

System Tools

  • Homebrew
    • Node
    • Git
  • Iterm
  • Oh My ZSH
  • sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
@cnolimit
cnolimit / bash_script_template
Created April 17, 2018 10:07
Bash Script - Template
#!/bin/sh
#title :hello_world.sh
#description :This script prints "hello world!" to the console
#author :Phillip Akuamoah-Boateng
#date :2018-04-17
#version :1.0.0
#usage :bash install.sh
#notes :n/a
#==============================================================================
@cnolimit
cnolimit / README-Template.md
Created March 14, 2018 11:02 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@cnolimit
cnolimit / init.coffee
Last active July 30, 2017 17:49
sync-settings
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->