All Projects → dsjoerg → ggtracker

dsjoerg / ggtracker

Licence: GPL-3.0 License
web server + HTML/CSS/JS for ggtracker site

Programming Languages

HTML
75241 projects
javascript
184084 projects - #8 most used programming language
ruby
36898 projects - #4 most used programming language
CSS
56736 projects
VCL
57 projects
python
139335 projects - #7 most used programming language

Introduction

This 'ggtracker' repository is the web server for ggtracker, plus the HTML/CSS/Javascript that makes the pretty pages pretty.

It does not do replay parsing, and delegates queries about players and matches to the ESDB API.

The other repos involved in ggtracker are:

Requirements

On Mac OSX, you can use homebrew as package manager: http://mxcl.github.com/homebrew/

Basic installation and updating

  • Run Bundler (bundle)
  • Copy and adjust database configuration (cp config/database.yml.example config/database.yml)
  • Copy secrets configuration (cp config/secrets.yml.example config/secrets.yml)
  • Copy s3 configuration (cp config/s3.yml.example config/s3.yml)
  • Create the database ggtracker needs (rake db:create)
  • Load the latest database schema (bundle exec rake db:schema:load)

If you want to be able to upload replays, you'll need to have an Amazon S3 account. After setting that up, edit your config/s3.yml file accordingly.

Starting

foreman start web

And then go to http://localhost:3000/ in your browser.

Note: the first time you request a page, it will be slow while it compiles CSS, JS etc.

It'll work, but there will be no matches, no players. To make it more interesting, you can simply point your ggtracker at the production ESDB server like so:

ESDB_HOST=api.ggtracker.com ESDB_MATCHBLOBS_BUCKET=gg2-matchblobs-prod foreman start web

And then go to http://localhost:3000/matches in your browser. If you see recent matches, it's working!

If you are working on changes that involve replay processing as well, you can run your own local instance of ESDB; in the default development configuration, the ggtracker server and ESDB server will find each other correctly.

Testing

Ruby (rspec)

The first time you run tests, set up the test database with:

  • rake db:create
  • rake db:test:prepare

To run tests: bundle exec rspec

Test Coverage (ruby, simplecov)

After running rspec, open coverage/index.html in a browser.

Javascript (via Testacular, with Jasmine)

NOTE: The following is obsolete as of 20140815. If & when more than one person is actively developing GGTracker Javascript code, I'll revive it.

Install testacular: npm install -g testacular

Note: Depending on your system configuration, the executable might not be in your PATH by default.

Start testacular: /usr/local/share/npm/bin/testacular start

This will launch a chrome window (you need chrome installed, of course) and automatically monitor specs for changes.

Run all tests: /usr/local/share/npm/bin/testacular run

I don't understand XXXX

Just ask, I'll add questions and answers to a FAQ here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].