├── .dockerignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md └── workflows │ ├── codeql.yml │ ├── eslint.yml │ └── release.yml ├── .gitignore ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── package.json ├── src ├── commands │ ├── about.ts │ ├── help.ts │ ├── rounds.ts │ ├── score.ts │ ├── settings.ts │ ├── top.ts │ └── train.ts ├── deploy-commands.js ├── events │ ├── interactionCreate.ts │ ├── messageCreate.ts │ └── ready.ts ├── helpers │ ├── db.ts │ ├── env.ts │ ├── log.ts │ └── util │ │ └── pagination.ts ├── index.ts └── models │ ├── generatedRound.ts │ ├── userConfig.ts │ └── userScore.ts ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | data/ 2 | node_modules/ 3 | 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/.github/workflows/eslint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/commands/about.ts -------------------------------------------------------------------------------- /src/commands/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/commands/help.ts -------------------------------------------------------------------------------- /src/commands/rounds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/commands/rounds.ts -------------------------------------------------------------------------------- /src/commands/score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/commands/score.ts -------------------------------------------------------------------------------- /src/commands/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/commands/settings.ts -------------------------------------------------------------------------------- /src/commands/top.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/commands/top.ts -------------------------------------------------------------------------------- /src/commands/train.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/commands/train.ts -------------------------------------------------------------------------------- /src/deploy-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/deploy-commands.js -------------------------------------------------------------------------------- /src/events/interactionCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/events/interactionCreate.ts -------------------------------------------------------------------------------- /src/events/messageCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/events/messageCreate.ts -------------------------------------------------------------------------------- /src/events/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/events/ready.ts -------------------------------------------------------------------------------- /src/helpers/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/helpers/db.ts -------------------------------------------------------------------------------- /src/helpers/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/helpers/env.ts -------------------------------------------------------------------------------- /src/helpers/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/helpers/log.ts -------------------------------------------------------------------------------- /src/helpers/util/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/helpers/util/pagination.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/models/generatedRound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/models/generatedRound.ts -------------------------------------------------------------------------------- /src/models/userConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/models/userConfig.ts -------------------------------------------------------------------------------- /src/models/userScore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/src/models/userScore.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abheekda1/awesomescibo/HEAD/yarn.lock --------------------------------------------------------------------------------