Skip to content

Latest commit

 

History

History
99 lines (70 loc) · 2.8 KB

README.md

File metadata and controls

99 lines (70 loc) · 2.8 KB

Destiny Trials Report - www.DestinyTrialsReport.com

Build Status Dependency Status devDependency Status bitHound Score

Quick links

Installation

Installation on Mac OS X

Using homebrew, install node + npm

  • brew install node

Install modules

  • make sure node version is v0.12.7
  • sudo npm install

Install bower packages

  • bower install

Insert API Key

  • Get an API key from Bungie.net
  • Insert your API key towards the top of Gruntfile.js here:
var BUNGIE_API_KEY = 'API KEY GOES HERE'

Update the definition files

  • sudo node manifest.js

Run Server

  • grunt serve

Installation on Debian & Ubuntu

[Install Dependencies] sudo apt-get install git ruby ruby-dev

[Update Gems & Install Compass] sudo gem update --system && gem install compass

[Install Node Version Manager] curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.25.4/install.sh | bash OR wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.25.4/install.sh | bash

[Install NPM & node.js]

source ~/.profile
nvm install 0.12.7
nvm use 0.12.7
n=$(which node);n=${n%/bin/node}; chmod -R 755 $n/bin/*; sudo cp -r $n/{bin,lib,share} /usr/local

[Install NPM Modules]

sudo npm install grunt-cli bower -g
npm install

[Install Bower Components] bower install

[Insert API Key]

  • Get an API key from Bungie.net
  • Insert your API key towards the top of Gruntfile.js here:
var BUNGIE_API_KEY = 'API KEY GOES HERE'

[Update the definition files] sudo node manifest.js

[Run Server] grunt serve

Support

Found a bug?

Please take a look at CONTRIBUTING.md and submit your issue here.


Contributing to the project

We are always looking for the quality contributions! Please check the CONTRIBUTING.md for the contribution guidelines.