Project

openkit

0.08
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
List leaderboards, post scores, etc.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
~> 4.7
~> 10.1
~> 0

Runtime

 Project Readme

Running Locally (Instructions for OS X)

This guide assumes that you can work your way around a command line. Specific instructions are written for bash (the default shell on OS X), but should be easy to apply to other shells too.

Make sure /usr/local/bin and /usr/local/sbin are in your PATH ahead of /usr/bin. You can check with echo $PATH. If they are not, add this line to ~/.bash_profile:

export PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH"

Next, install homebrew, if you haven't already.

Add this to ~/.bash_profile:

# Add gem binaries to path. (See 'brew info ruby')
export PATH=$(brew --prefix ruby)/bin:$PATH

System dependencies:

brew update
brew upgrade ruby redis mysql libxml2
gem pristine --all --only-executables

Prepare rails project:

git clone git@github.com:OpenKit/openkit-server.git
cd openkit-server/dashboard
bundle install
bin/rake setup:prereqs
bin/rake db:setup
bin/rails start

Testing:

bin/rake db:test:prepare
bin/rake test

Testing with Zeus:

bin/rake db:test:prepare
gem install zeus
zeus start
zeus t

For running api_tester:

rake setup:api_test_app
script/api_tester.rb