-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
50 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
{ | ||
"typescript.tsdk": "node_modules\\typescript\\lib", | ||
"typescript.tsdk": ".yarn/sdks/typescript/lib", | ||
"search.exclude": { | ||
"**/.yarn": true, | ||
"**/.pnp.*": true | ||
} | ||
}, | ||
"eslint.nodePath": ".yarn/sdks", | ||
"prettier.prettierPath": ".yarn/sdks/prettier/index.js", | ||
"typescript.enablePromptUseWorkspaceTsdk": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,44 @@ | ||
# zeepkist-records-bot | ||
# Discord Bot | ||
|
||
Discord Bot for displaying Zeepkist records | ||
A records and leaderboard bot for the [Zeepkist Discord server](https://discord.gg/zeepkist) using data from Zeepkist GTR. | ||
|
||
## Recommended IDE Setup | ||
|
||
[VSCode](https://code.visualstudio.com/) | ||
|
||
## First-time Project Setup | ||
|
||
```sh | ||
yarn | ||
yarn dlx @yarnpkg/sdks vscode | ||
``` | ||
|
||
### Compile and Hot-Reload for Development | ||
|
||
```sh | ||
yarn dev | ||
``` | ||
|
||
### Type-Check, Compile and Minify for Production | ||
|
||
```sh | ||
yarn build | ||
``` | ||
|
||
### Lint with [ESLint](https://eslint.org/) | ||
|
||
```sh | ||
yarn lint | ||
``` | ||
|
||
### Run Tests | ||
|
||
```sh | ||
yarn test | ||
``` | ||
|
||
### Run Tests with Coverage | ||
|
||
```sh | ||
yarn coverage | ||
``` |