From 8b55f20d2f8c8627f70c3726277fe2570b7b576c Mon Sep 17 00:00:00 2001 From: ayntee Date: Sun, 14 Feb 2021 22:39:55 +0400 Subject: [PATCH 1/3] docs: rename discordeno/discordeno-boilerplate to discordeno/boilerplate (#521) --- README.md | 2 +- docs/src/migrating.md | 2 +- docs/src/stepbystep/createbot.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e42dfacce..3ca08bede 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ developers had when I first started out coding Discord bots with existing libraries. If you are a beginner, you can check out these awesome official and unofficial boilerplates: -- [Discordeno Boilerplate (official)](https://github.com/discordeno/discordeno-boilerplate) +- [Discordeno Boilerplate (official)](https://github.com/discordeno/boilerplate) - [Serverless Slash Commands Template (official)](https://github.com/discordeno/slash-commands-boilerplate) - [Add Your Own!](https://github.com/discordeno/discordeno/pulls) diff --git a/docs/src/migrating.md b/docs/src/migrating.md index e16607215..aa0523d08 100644 --- a/docs/src/migrating.md +++ b/docs/src/migrating.md @@ -22,7 +22,7 @@ For the purposes of this guide, I will be using the current ## Preparations - First, create a Discordeno Bot using the - [Generator Boilerplate](https://github.com/discordeno/discordeno-boilerplate) + [Generator Boilerplate](https://github.com/discordeno/boilerplate) I will name it Zodiac. - Then `git clone https://github.com/Skillz4Killz/Zodiac.git` diff --git a/docs/src/stepbystep/createbot.md b/docs/src/stepbystep/createbot.md index 2634c23b8..ce0f4864e 100644 --- a/docs/src/stepbystep/createbot.md +++ b/docs/src/stepbystep/createbot.md @@ -10,7 +10,7 @@ you go through this guide it will make a lot more sense. > If you don't have these yet please prepare them first before going forward. - First, create a Discordeno Bot using the - [Generator Boilerplate](https://github.com/discordeno/discordeno-boilerplate/generate). + [Generator Boilerplate](https://github.com/discordeno/boilerplate/generate). Give it any name you like. For the purpose of this guide we will call it, Stargate. From ebb95dd28589b12d766f9ff4114ecd8fc1eb2d86 Mon Sep 17 00:00:00 2001 From: ayntee Date: Sun, 14 Feb 2021 22:53:39 +0400 Subject: [PATCH 2/3] docs(migrating): format file (#522) --- docs/src/migrating.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/migrating.md b/docs/src/migrating.md index aa0523d08..b88c6cce4 100644 --- a/docs/src/migrating.md +++ b/docs/src/migrating.md @@ -22,8 +22,8 @@ For the purposes of this guide, I will be using the current ## Preparations - First, create a Discordeno Bot using the - [Generator Boilerplate](https://github.com/discordeno/boilerplate) - I will name it Zodiac. + [Generator Boilerplate](https://github.com/discordeno/boilerplate) I will name + it Zodiac. - Then `git clone https://github.com/Skillz4Killz/Zodiac.git` From 4b5bd750e895a708df354003645b41dce9c90afb Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Sun, 14 Feb 2021 14:06:56 -0500 Subject: [PATCH 3/3] Update Dockerfile --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 2df86ac9c..359cf1a86 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -8,7 +8,7 @@ RUN mkdir -p /deno \ ENV PATH=${DENO_INSTALL}/bin:${PATH} \ DENO_DIR=${DENO_INSTALL}/.cache/deno -RUN deno cache deps.ts +# RUN deno cache deps.ts # [Optional] Uncomment this section to install additional OS packages. # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \