Skip to content

ruthnaebeck/lol_tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

League of Legends Stats Tracker

This app allows you to look up League of Legends Stats by Summoner name.

Look up your game stats at https://league-stats-tracker.herokuapp.com/
If you need a test account to search, use RiotSchmick

Demo

League of Legends

Development

Riot Games API

Redis Server

To install Redis (on macOSX), run the following commands:

mkdir redis
cd redis
curl -O http://download.redis.io/redis-stable.tar.gz
tar xzvf redis-stable.tar.gz
cd redis-stable
make
make test
sudo make install

Start the Redis server with:

redis-server

Test if the Redis Server is working with the following. If it replies PONG, then it is good.

redis-cli ping

A full list of redis commands can be found at https://redis.io/commands

Deployment

Deploy branch to Heroku:

git checkout -b deploy
git add -f 'public'
git commit -m 'add bundles for deploy'
git push -f heroku deploy:master
git checkout master
git branch -D deploy