#FoosNet
FoosNet is a fooseball ranking system. It began development as a Rally Software Development hack-a-thon project so that Rally employees could bring a little more competition to their games.
##Contributing
All work is tracked through our waffle.io, so take a look at the work that needs to be done. If you have other ideas feel free to open up an issue and we will prioritize it and start tracking it.
###Getting Started
- Fork and Clone the repo
cd foos-net- Install Node:
sudo npm install -g node - Install Jake:
sudo npm install -g jake - Install sass:
gem install sass - Resolve node dependencies:
npm install - Install and start MongoDB:
1.
brew install -g mongodb2.jake db:start - Build the project and start up the server:
grunt build node:run - Point your browser to the location specified in the otput from the command in number 7
##Testing
You can run all server side tests through grunt with the grunt test:node command. If you are actively working on server side code, you can also use grunt test:node:watch to run the tests on every code change.