https://github.com/fourkitchens/crowd.work
Crowd Work
https://github.com/fourkitchens/crowd.work
Last synced: about 9 hours ago
JSON representation
Crowd Work
- Host: GitHub
- URL: https://github.com/fourkitchens/crowd.work
- Owner: fourkitchens
- Created: 2015-01-16T00:36:12.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-26T03:50:46.000Z (about 11 years ago)
- Last Synced: 2025-03-03T22:37:22.736Z (over 1 year ago)
- Language: JavaScript
- Size: 328 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Crowd Work
Team discussion organization tool, built on Meteor.
# Getting Started
## Installing meteor (unix-based machines):
* Run: `curl https://install.meteor.com | /bin/sh`
## Running crowd.work
* Change your current directory to the src subdirectory, like: `cd /path/to/crowd.work/src`.
* Run meteor inside of meteor's root: `meteor`
* Meteor will initialize itself, install it's dependencies, and tell you when it's finished.
* When Meteor has finished initializing itself, open `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.
## Coding Standards
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](http://editorconfig.org/) file is provided for convenience.
### Installation
* Change directory to the crowd.work directory, like: `cd /path/to/crowd.work`
* Run `npm install` to retrieve dependencies.
### Checking
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.