Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 1.41 KB

DEVGUIDE.md

File metadata and controls

25 lines (19 loc) · 1.41 KB

SeaSponge Developer Guidelines

Dependencies & Building

See the Readme for an overview of the dependencies you need and basic usage of app locally

Directory Overview

  • /app Where the main Angular application lives
  • /test Where the test files for the Karma test suite live

Common Tasks

Creating Angular stuff (Controllers, routes, etc.)

We recommend you use the sub-generators provided by generator-angular.

Creating a Stencil

  1. Inside of /app/scripts/stencils Create a stencilName.coffee file in the appropriate category folder
  2. Specify a new stencil's class name and what base stencil it extends. Don't forget to provide a name and an image. See process.coffee for an example
  3. Add your new stencil to /app/scripts/stencils/stencils.coffee
  4. Add the name of the corresponding compiled js to app/index.html. Example <script src="scripts/stencils/process/process.js"></script>