Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 772 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 772 Bytes

CATS Score

CATS Score is a unified rank table for programming contests scoring.

Installation

make git clone and just type in you web browser "file:///path/to/cats-score/index.html"

If you want to run at maximum performance, perform the following steps:

  1. You need install Node.js
$ sudo apt-get install nodejs
  1. Next, need requeredjs installed globally:
$ sudo npm install -g requirejs
  1. Next, build dist/index.js
$ cd path/to/cats-score/
$ nodejs path/to/r.js -o build.js
  1. Next, in index.html make sure be to load "dist/main", not "app/main", like this
<script type="text/javascript" src="vendors/requirejs/require.js" data-main="dist/main"></script>
  1. Now, CATS Score should work with maximum performance!