/valorant-match-history

See your VALORANT match history with LP (VP??) gains

Primary LanguageHTML

VALORANT ELO TRACKER

Track and view your VALORANT elo with this web application. As of 12/26, the original site has been taken down.

Installation

Pick one of the two following methods to install and run this project:

Regular Installation (Recommended)

You can follow along with the VIDEO TUTORIAL here.

  1. Ensure you have Python 3.X and pip on your computer. You can download it on Windows here, and most Macbooks should already have Python pre-installed.
  2. Clone the code/repo (download the zip, utilize git clone, or any other method)
  3. In the root directory (the valorant-match-history folder), run python3 -m pip install -r requirements.txt
  4. Run python3 ./wsgi.py
  5. If no errors occur, visit the site http://127.0.0.1:5000/ in your browser of choice. Only the computer you ran step 4 on will have access to this site.

Docker Installation

  1. Clone the code/repo (download the zip, utilize git clone, or any other method)
  2. In the root directory, run docker build -t valorantelo:1.0 .
  3. Run docker images and identify the IMAGE ID associated with the valorantelo repository and 1.0 tag. In the following screenshot, the IMAGE ID is fbce9febcaa8.

image

  1. Run docker run -p 5000:5000 <YOUR_IMAGE_ID>. In the example, the commmand would be docker run -p 5000:5000 fbce9febcaa8.
  2. Visit http://0.0.0.0:5000/ in your web browser from the same device that ran step 4.

Notes

Inspired from https://github.com/RumbleMike/ValorantRankedPoints and https://gist.github.com/Luc1412/1f93257a2a808679ff014f258db6c35b

Hosted at https://valorantelo.gg

Alternatives

If you are looking for an alternative, please checkout RumbleMikee's version (we are not affiliated, but this site was based off of his project). You can learn more about his project here