├── .env.example ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── BadgesList.yml │ ├── ThemeList.yml │ └── monkeytype-readme.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── README.md ├── action.yml ├── app.js ├── monkeytype-data ├── badges.json └── themes.json ├── package.json ├── public ├── assets │ ├── robots.txt │ └── sitemap.xml ├── image │ ├── apeMonkeyIcon.png │ ├── github-30*30.svg │ ├── github.png │ ├── github.svg │ ├── github.webp │ ├── plus-solid.svg │ ├── stupidMonkeyIcon-30*30.svg │ ├── stupidMonkeyIcon.png │ ├── stupidMonkeyIcon.svg │ ├── stupidMonkeyIcon.webp │ ├── stupidMonkeyIconWhite.png │ ├── stupidMonkeyIconWhite.webp │ └── userImg │ │ └── README.md ├── script │ ├── generateSvg.js │ ├── index.js │ ├── monkeytypeData.js │ ├── prism.js │ ├── tailwindCSS.js │ └── user.js ├── style │ ├── input.css │ ├── output.css │ └── prism.css └── views │ ├── favicon.ejs │ ├── index.ejs │ ├── logo.ejs │ └── user.ejs └── tailwind.config.js /.env.example: -------------------------------------------------------------------------------- 1 | DOMAIN=your-domain -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.css linguist-detectable=false -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/BadgesList.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/.github/workflows/BadgesList.yml -------------------------------------------------------------------------------- /.github/workflows/ThemeList.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/.github/workflows/ThemeList.yml -------------------------------------------------------------------------------- /.github/workflows/monkeytype-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/.github/workflows/monkeytype-readme.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | public/style/output.css -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 4 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/action.yml -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/app.js -------------------------------------------------------------------------------- /monkeytype-data/badges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/monkeytype-data/badges.json -------------------------------------------------------------------------------- /monkeytype-data/themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/monkeytype-data/themes.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/assets/robots.txt -------------------------------------------------------------------------------- /public/assets/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/assets/sitemap.xml -------------------------------------------------------------------------------- /public/image/apeMonkeyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/image/apeMonkeyIcon.png -------------------------------------------------------------------------------- /public/image/github-30*30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/image/github-30*30.svg -------------------------------------------------------------------------------- /public/image/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/image/github.png -------------------------------------------------------------------------------- /public/image/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/image/github.svg -------------------------------------------------------------------------------- /public/image/github.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/image/github.webp -------------------------------------------------------------------------------- /public/image/plus-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/image/plus-solid.svg -------------------------------------------------------------------------------- /public/image/stupidMonkeyIcon-30*30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/image/stupidMonkeyIcon-30*30.svg -------------------------------------------------------------------------------- /public/image/stupidMonkeyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/image/stupidMonkeyIcon.png -------------------------------------------------------------------------------- /public/image/stupidMonkeyIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/image/stupidMonkeyIcon.svg -------------------------------------------------------------------------------- /public/image/stupidMonkeyIcon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/image/stupidMonkeyIcon.webp -------------------------------------------------------------------------------- /public/image/stupidMonkeyIconWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/image/stupidMonkeyIconWhite.png -------------------------------------------------------------------------------- /public/image/stupidMonkeyIconWhite.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/image/stupidMonkeyIconWhite.webp -------------------------------------------------------------------------------- /public/image/userImg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/image/userImg/README.md -------------------------------------------------------------------------------- /public/script/generateSvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/script/generateSvg.js -------------------------------------------------------------------------------- /public/script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/script/index.js -------------------------------------------------------------------------------- /public/script/monkeytypeData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/script/monkeytypeData.js -------------------------------------------------------------------------------- /public/script/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/script/prism.js -------------------------------------------------------------------------------- /public/script/tailwindCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/script/tailwindCSS.js -------------------------------------------------------------------------------- /public/script/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/script/user.js -------------------------------------------------------------------------------- /public/style/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/style/input.css -------------------------------------------------------------------------------- /public/style/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/style/output.css -------------------------------------------------------------------------------- /public/style/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/style/prism.css -------------------------------------------------------------------------------- /public/views/favicon.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/views/favicon.ejs -------------------------------------------------------------------------------- /public/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/views/index.ejs -------------------------------------------------------------------------------- /public/views/logo.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/views/logo.ejs -------------------------------------------------------------------------------- /public/views/user.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/public/views/user.ejs -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkeytype-hub/monkeytype-readme/HEAD/tailwind.config.js --------------------------------------------------------------------------------