Add Sentinel bot to docs (#652)

* add sentinel

* update discord invite link
This commit is contained in:
Denali Marsh 2020-09-15 13:20:35 +02:00 committed by GitHub
parent c249746bf3
commit 6cdccbad4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 2 deletions

View File

@ -17,7 +17,7 @@
<div align="center">
### [Telegram](https://t.me/kavalabs) | [Medium](https://medium.com/kava-labs) | [Discord](https://discord.com/invite/kQzh3Uv)
### [Telegram](https://t.me/kavalabs) | [Medium](https://medium.com/kava-labs) | [Discord](https://discord.gg/JJYnuCx)
</div>

View File

@ -30,6 +30,10 @@ module.exports = {
title: "Auction Bot",
path: "/tools/auction.html",
},
{
title: "Sentinel",
path: "/tools/sentinel.html",
},
{
title: "Community Tools",
path: "/tools/community.html",
@ -85,7 +89,7 @@ module.exports = {
},
{
service: "discord",
url: "https://discord.com/invite/kQzh3Uv"
url: "https://discord.gg/JJYnuCx"
},
{
service: "github",

View File

@ -36,6 +36,14 @@ for T in ${toolDocs[@]}; do
curl "${baseGitUrl}/${toolsGitRepo}/master/${T}/README.md" -o "./${toolsDir}/${T}.md"
done
# Add Go tools
goToolsGitRepo="go-tools"
goToolsDocs=("sentinel")
for T in ${goToolsDocs[@]}; do
curl "${baseGitUrl}/${goToolsGitRepo}/master/${T}/README.md" -o "./${toolsDir}/${T}.md"
done
# Copy the community tools
cp communitytools.md "./${toolsDir}/community.md"
echo "---