Team discussion organization tool, built on Meteor.
curl https://install.meteor.com | /bin/sh
cd /path/to/crowd.work/src
.meteor
http://localhost:3000
in your browser. Of course, you can put it on any port you would like, but by default Meteor takes over port 3000.This project contains multiple tools for enforcing coding standards and checking for errors within the codebase. Before code is merged into the project, it must meet the standards defined in the .jscsrc
and .jshintrc
files in the project root. An EditorConfig file is provided for convenience.
cd /path/to/crowd.work
npm install
to retrieve dependencies.To check your local codebase, run gulp cs
from a console in the project root. An error report, if any, will be generated in the console. If errors are reported, they should be fixed and the Coding Standards checks should be executed until all errors are eliminated.