├── .dockerignore ├── .env.example ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support-request.md └── workflows │ └── CI.yml ├── .gitignore ├── Dockerfile ├── README.md ├── config.json ├── docker-compose.yml ├── img ├── global-stats.png ├── historical-data.png ├── lookup.png ├── profile-page.png └── top.png ├── package.json ├── src ├── classes │ ├── discordBot.js │ ├── historicalData.js │ └── web.js ├── commands │ └── stats │ │ ├── lookup.js │ │ ├── stats.js │ │ └── top.js ├── index.js └── models │ ├── historicalData.js │ └── player.js ├── static ├── img │ └── weapons │ │ ├── ak47.png │ │ ├── aug.png │ │ ├── awp.png │ │ ├── bizon.png │ │ ├── cz75a.png │ │ ├── deagle.png │ │ ├── elite.png │ │ ├── famas.png │ │ ├── fiveseven.png │ │ ├── g3sg1.png │ │ ├── galilar.png │ │ ├── glock.png │ │ ├── hkp2000.png │ │ ├── knife.png │ │ ├── m249.png │ │ ├── m4a1.png │ │ ├── m4a1_silencer.png │ │ ├── mac10.png │ │ ├── mag7.png │ │ ├── mp5sd.png │ │ ├── mp7.png │ │ ├── mp9.png │ │ ├── negev.png │ │ ├── nova.png │ │ ├── p250.png │ │ ├── p90.png │ │ ├── revolver.png │ │ ├── sawedoff.png │ │ ├── scar20.png │ │ ├── sg556.png │ │ ├── ssg08.png │ │ ├── tec9.png │ │ ├── ump45.png │ │ ├── usp_silencer.png │ │ └── xm1014.png ├── js │ ├── app.js │ ├── overview.js │ └── profile.js └── style │ └── app.css ├── test ├── discord.test.js ├── historicalData.test.js ├── mock.js └── web.test.js └── views ├── index.ejs ├── partials ├── head.ejs ├── header.ejs └── hitmap.ejs └── profile.ejs /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/.github/ISSUE_TEMPLATE/support-request.md -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/config.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /img/global-stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/img/global-stats.png -------------------------------------------------------------------------------- /img/historical-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/img/historical-data.png -------------------------------------------------------------------------------- /img/lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/img/lookup.png -------------------------------------------------------------------------------- /img/profile-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/img/profile-page.png -------------------------------------------------------------------------------- /img/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/img/top.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/package.json -------------------------------------------------------------------------------- /src/classes/discordBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/src/classes/discordBot.js -------------------------------------------------------------------------------- /src/classes/historicalData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/src/classes/historicalData.js -------------------------------------------------------------------------------- /src/classes/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/src/classes/web.js -------------------------------------------------------------------------------- /src/commands/stats/lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/src/commands/stats/lookup.js -------------------------------------------------------------------------------- /src/commands/stats/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/src/commands/stats/stats.js -------------------------------------------------------------------------------- /src/commands/stats/top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/src/commands/stats/top.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/src/index.js -------------------------------------------------------------------------------- /src/models/historicalData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/src/models/historicalData.js -------------------------------------------------------------------------------- /src/models/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/src/models/player.js -------------------------------------------------------------------------------- /static/img/weapons/ak47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/ak47.png -------------------------------------------------------------------------------- /static/img/weapons/aug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/aug.png -------------------------------------------------------------------------------- /static/img/weapons/awp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/awp.png -------------------------------------------------------------------------------- /static/img/weapons/bizon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/bizon.png -------------------------------------------------------------------------------- /static/img/weapons/cz75a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/cz75a.png -------------------------------------------------------------------------------- /static/img/weapons/deagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/deagle.png -------------------------------------------------------------------------------- /static/img/weapons/elite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/elite.png -------------------------------------------------------------------------------- /static/img/weapons/famas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/famas.png -------------------------------------------------------------------------------- /static/img/weapons/fiveseven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/fiveseven.png -------------------------------------------------------------------------------- /static/img/weapons/g3sg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/g3sg1.png -------------------------------------------------------------------------------- /static/img/weapons/galilar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/galilar.png -------------------------------------------------------------------------------- /static/img/weapons/glock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/glock.png -------------------------------------------------------------------------------- /static/img/weapons/hkp2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/hkp2000.png -------------------------------------------------------------------------------- /static/img/weapons/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/knife.png -------------------------------------------------------------------------------- /static/img/weapons/m249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/m249.png -------------------------------------------------------------------------------- /static/img/weapons/m4a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/m4a1.png -------------------------------------------------------------------------------- /static/img/weapons/m4a1_silencer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/m4a1_silencer.png -------------------------------------------------------------------------------- /static/img/weapons/mac10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/mac10.png -------------------------------------------------------------------------------- /static/img/weapons/mag7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/mag7.png -------------------------------------------------------------------------------- /static/img/weapons/mp5sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/mp5sd.png -------------------------------------------------------------------------------- /static/img/weapons/mp7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/mp7.png -------------------------------------------------------------------------------- /static/img/weapons/mp9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/mp9.png -------------------------------------------------------------------------------- /static/img/weapons/negev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/negev.png -------------------------------------------------------------------------------- /static/img/weapons/nova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/nova.png -------------------------------------------------------------------------------- /static/img/weapons/p250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/p250.png -------------------------------------------------------------------------------- /static/img/weapons/p90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/p90.png -------------------------------------------------------------------------------- /static/img/weapons/revolver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/revolver.png -------------------------------------------------------------------------------- /static/img/weapons/sawedoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/sawedoff.png -------------------------------------------------------------------------------- /static/img/weapons/scar20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/scar20.png -------------------------------------------------------------------------------- /static/img/weapons/sg556.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/sg556.png -------------------------------------------------------------------------------- /static/img/weapons/ssg08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/ssg08.png -------------------------------------------------------------------------------- /static/img/weapons/tec9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/tec9.png -------------------------------------------------------------------------------- /static/img/weapons/ump45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/ump45.png -------------------------------------------------------------------------------- /static/img/weapons/usp_silencer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/usp_silencer.png -------------------------------------------------------------------------------- /static/img/weapons/xm1014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/img/weapons/xm1014.png -------------------------------------------------------------------------------- /static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/js/app.js -------------------------------------------------------------------------------- /static/js/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/js/overview.js -------------------------------------------------------------------------------- /static/js/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/js/profile.js -------------------------------------------------------------------------------- /static/style/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/static/style/app.css -------------------------------------------------------------------------------- /test/discord.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/test/discord.test.js -------------------------------------------------------------------------------- /test/historicalData.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/test/historicalData.test.js -------------------------------------------------------------------------------- /test/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/test/mock.js -------------------------------------------------------------------------------- /test/web.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/test/web.test.js -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/views/index.ejs -------------------------------------------------------------------------------- /views/partials/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/views/partials/head.ejs -------------------------------------------------------------------------------- /views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/views/partials/header.ejs -------------------------------------------------------------------------------- /views/partials/hitmap.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/views/partials/hitmap.ejs -------------------------------------------------------------------------------- /views/profile.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niekcandaele/CSGO-RankMe-stats/HEAD/views/profile.ejs --------------------------------------------------------------------------------