Skip to content

Latest commit

 

History

History
executable file
·
50 lines (32 loc) · 1.86 KB

README.md

File metadata and controls

executable file
·
50 lines (32 loc) · 1.86 KB

Konbini

Build Status Dependency Status devDependency Status

Development

This project requires Node 4.X and npm 3.X You should install node using nvm.

Start Hacking

  1. npm install to grab all the goodies
  2. npm run dev to start a hot-reloading development server
  3. No step 3

Other useful commands:

  • npm test to run the tests
  • npm run tdd to continuously run tests as you code
  • npm run lint to check your changes against the linting guidelines

Branches and Versioning

The master is considered "hot" and is continuously deployed to a staging server. Every tagged version is automatically deployed to production.

Day-to-day development is done on the develop branch. The develop branch is continuously deployed to a development server for evaluation.

The development promotion workflow is as such:

  1. Work on a feature branch
  2. Pull request the develop branch
  3. develop branch is merged into master when ready

This project is semantically versioned. Changes that break compatibility with the remote API are considered breaking changes.

Project Structure

Source lives in src/. Compiled output goes in dist/.

Source Files

  • containers/: Stateful react components. These are usually top-level route handlers.
  • components/: Stateless/Dumb react components. These guys determininstically render based on props.