About The Project
SummonerStats is a site that provides League of Legends summoner’s stats.
Built With
- Django, a high-level Python Web framework.
- Bootstrap, a free and responsive framework for faster and easier web development.
- Sqlite3, a small, fast, self-contained SQL database engine.
- JQuery, a fast, small, and feature-rich JavaScript library.
Getting Started
To get a local copy up and running follow these simple example steps.
Installation
- Install Python 3
- Get a free API Key at Riot Developer Portal
- Clone the repo
git clone https://github.com/FuzzyGrim/SummonerStats.git
- Install Python dependencies
pip install -r requirements.txt
- Create
.env
file and add your API KeyAPI = 'ENTER YOUR API';
- Generate a Django secret key
python -c "import secrets; print(secrets.token_urlsafe())"
- Add the secret key to the
.env
fileSECRET = 'ENTER YOUR SECRET';
- Apply migrations
python manage.py migrate
- Run server
python manage.py runserver
- Now that the server’s running, visit http://127.0.0.1:8000/ with your Web browser
License
Distributed under the GPLv3 License. See LICENSE
for more information.