{"id":13406953,"url":"https://github.com/vkaelin/LeagueStats","last_synced_at":"2025-03-14T11:30:54.506Z","repository":{"id":35359150,"uuid":"176359515","full_name":"vkaelin/LeagueStats","owner":"vkaelin","description":"📈 League of Legends Stats Web App","archived":false,"fork":false,"pushed_at":"2024-04-14T18:57:30.000Z","size":11185,"stargazers_count":408,"open_issues_count":6,"forks_count":61,"subscribers_count":16,"default_branch":"master","last_synced_at":"2024-05-16T01:08:43.799Z","etag":null,"topics":["adonisjs","hacktoberfest","league-of-legends","leagueoflegends","nodejs","postgresql","redis","tailwindcss","typescript","vuejs"],"latest_commit_sha":null,"homepage":"https://leaguestats.gg","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vkaelin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"patreon":"leaguestats"}},"created_at":"2019-03-18T19:55:16.000Z","updated_at":"2024-07-30T22:36:17.258Z","dependencies_parsed_at":"2023-09-27T02:01:30.214Z","dependency_job_id":"eaf22c7b-cb87-492a-8b18-593bebf8d2d5","html_url":"https://github.com/vkaelin/LeagueStats","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vkaelin%2FLeagueStats","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vkaelin%2FLeagueStats/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vkaelin%2FLeagueStats/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vkaelin%2FLeagueStats/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vkaelin","download_url":"https://codeload.github.com/vkaelin/LeagueStats/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243569199,"owners_count":20312370,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["adonisjs","hacktoberfest","league-of-legends","leagueoflegends","nodejs","postgresql","redis","tailwindcss","typescript","vuejs"],"created_at":"2024-07-30T19:02:43.996Z","updated_at":"2025-03-14T11:30:52.452Z","avatar_url":"https://github.com/vkaelin.png","language":"Vue","funding_links":["https://patreon.com/leaguestats"],"categories":["Open-Source Projects","Vue","Projects Using Vue.js","Open Source [🔝](#readme)","Applications \u0026 Tools"],"sub_categories":["Open Source","Tournaments management"],"readme":"# LeagueStats\n\n[![Netlify Status](https://api.netlify.com/api/v1/badges/caa8be10-e095-4934-81ef-b662fb73483f/deploy-status)](https://app.netlify.com/sites/leaguestats-gg/deploys)\n\u003ca href=\"https://discord.gg/RjBzjfk\"\u003e\u003cimg src=\"https://img.shields.io/badge/Discord-join%20chat-738bd7.svg\" alt=\"LeagueStats.gg official Discord\"\u003e\u003c/a\u003e\n\nThe goal of [leaguestats.gg](https://leaguestats.gg) is to provide global complete data for all League of Legends summoners.  \nHere is an [example](https://leaguestats.gg/summoner/euw/KCNEXTADKING) of stats for some summoner.\n\n![Screenshot](https://res.cloudinary.com/kln/image/upload/v1615669773/repository-preview-leaguestats.jpg)\n\n[![DigitalOcean Hosting](https://web-platforms.sfo2.cdn.digitaloceanspaces.com/WWW/Badge%201.svg)](https://www.digitalocean.com/?refcode=4f4a6c382133\u0026utm_campaign=Referral_Invite\u0026utm_medium=Referral_Program\u0026utm_source=badge)\n\n## Installation\n\nDevelopment environment requirements :\n\n- [Node.js](https://nodejs.org/en/download/) \u003e= 18.0.0\n- [PostgreSQL](https://www.postgresql.org/download/)\n- [Redis](https://redis.io/download)\n\nYou can use the `docker-compose.yml` file to quickly setup PostgreSQL and Redis in development.\n\nSetting up the docker container:\n\n```bash\n\u003e docker-compose up --build -d\n```\n\nSetting up your development environment on your local machine :\n\n```bash\n\u003e git clone https://github.com/vkaelin/LeagueStats.git\n\u003e cd leaguestats/client\n\u003e npm install\n\n# And\n\n\u003e cd leaguestats/server\n\u003e npm install\n\u003e cp .env.example .env # edit the values (see below for more info)\n\u003e node ace migration:run\n```\n\n### Env Values\n\nBefore running the migrations, you need to add some details to the server .env:\n\n1. To generate the APP_KEY run `node ace generate:key`, copy and paste the value on the respective .env variable;\n\n2. Set the database variables PG_USER, PG_PASSWORD and PG_DB_NAME. If you are using docker,\n   you can set as below:\n\n```\nPG_USER=root\nPG_PASSWORD=root\nPG_DB_NAME=leaguestats\n```\n\n3. For the application work properly, you need a Riot API Key to set it on RIOT_API_KEY .env variable. To know more, take a look to their documentation on [this link](https://developer.riotgames.com/).\n\n## Useful commands\n\nRunning the app :\n\n```bash\n\u003e cd client\n\u003e npm run dev\n\n# And\n\n\u003e cd server\n\u003e npm run dev\n```\n\nDeploying the app :\n\n```bash\n\u003e cd client\n\u003e npm run build\n\u003e npm run preview # to test the build locally\n\n# And\n\n\u003e cd server\n\u003e npm run build\n\u003e node build/server.js\n```\n\n## Contributing\n\nDo not hesitate to contribute to the project by adapting or adding features ! Bug reports or pull requests are welcome.\n\n## License\n\nNonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)  \nhttps://creativecommons.org/licenses/by-nc-sa/4.0/\n\n### You are free to:\n\nShare — copy and redistribute the material in any medium or format\n\nAdapt — remix, transform, and build upon the material\n\n### Under the following terms:\n\nNonCommercial — You may not use the material for commercial purposes.\n\nShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvkaelin%2FLeagueStats","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvkaelin%2FLeagueStats","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvkaelin%2FLeagueStats/lists"}