In order to run this app in development mode, set up your workspace as follows:
conda create -n lolgenie python=3.8
conda activate lolgenie
requirements.txt
file: pip install -r requirements.txt
uvicorn
: uvicorn src.main:app --reload
Every time you come back to the project, run the app as follows:
conda activate lolgenie
uvicorn src.main:app --reload
This repository is meant to host code for querying and processing data from the Riot Games API.
To develop and use this code, you will need:
In your .bashrc
, .zshrc
, or equivalet, export the Riot Games API key as RIOT_API_KEY
.
export RIOT_API_KEY="RGAPI-blah-blah-blah"