From a2f83eb19a20b440426349fd0c9e1a8cf4b79448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ant=C3=B3nio=20Meireles?= Date: Sun, 12 Jun 2022 17:51:17 +0100 Subject: [PATCH] docs: yet another set of single byte typo squashing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: António Meireles --- docs/docs/contributing-overview.md | 2 +- docs/docs/how-to/sending-emails.md | 2 +- docs/docs/typescript.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/contributing-overview.md b/docs/docs/contributing-overview.md index c3c8d733bf1c..ad656540981d 100644 --- a/docs/docs/contributing-overview.md +++ b/docs/docs/contributing-overview.md @@ -100,7 +100,7 @@ What you want to do not on the roadmap? Well, still go for it! We love spikes an |[`@redwoodjs/graphql-server`](https://github.com/redwoodjs/redwood/blob/main/packages/graphql-server/README.md)|Exposes functions to build the GraphQL API, provides services with `context`, and a set of envelop plugins to supercharge your GraphQL API with logging, authentication, error handling, directives and more| |[`@redwoodjs/internal`](https://github.com/redwoodjs/redwood/blob/main/packages/internal/README.md)|Provides tooling to parse Redwood configs and get a project's paths| |[`@redwoodjs/prerender`](https://github.com/redwoodjs/redwood/blob/main/packages/prerender/README.md)|Defines functionality for prerendering static content| -|[`@redwoodjs/record`](https://github.com/redwoodjs/redwood/blob/main/packages/record/README.md)|ORM bult on top of Prisma. It may be extended in the future to wrap other database access packages| +|[`@redwoodjs/record`](https://github.com/redwoodjs/redwood/blob/main/packages/record/README.md)|ORM built on top of Prisma. It may be extended in the future to wrap other database access packages| |[`@redwoodjs/router`](https://github.com/redwoodjs/redwood/blob/main/packages/router/README.md)|The built-in router for Redwood| |[`@redwoodjs/structure`](https://github.com/redwoodjs/redwood/blob/main/packages/structure/README.md)|Provides a way to build, validate and inspect an object graph that represents a complete Redwood project| |[`@redwoodjs/telemetry`](https://github.com/redwoodjs/redwood/blob/main/packages/telemetry/README.md)|Provides functionality for anonymous data collection| diff --git a/docs/docs/how-to/sending-emails.md b/docs/docs/how-to/sending-emails.md index ed9eb670b113..192d2b7c2357 100644 --- a/docs/docs/how-to/sending-emails.md +++ b/docs/docs/how-to/sending-emails.md @@ -243,7 +243,7 @@ Now is a good time to go get a fresh cup of coffee, or other beverage of choice. ## SendInBlue -To actually send an email you need a mail server that you can talk to using SMTP. `nodemailer` has a really [simple example](https://nodemailer.com/about/#example) on their webpage that uses Ethereal. But that's only for test messages. The emails will never actually be delivered beyond Ethereal. Another option is to use your own GMail address (if you have one). But to get that working reliably you need to set up Oauth2, which isn't very straight forward. So your best bet here is actually to use a dedicated Cloud/SaaS solution. A lot of them have a free tier that lets you send enough emails for a small production app. We'll be using SendInBlue that offers 300 free emails per day. +To actually send an email you need a mail server that you can talk to using SMTP. `nodemailer` has a really [simple example](https://nodemailer.com/about/#example) on their webpage that uses Ethereal. But that's only for test messages. The emails will never actually be delivered beyond Ethereal. Another option is to use your own GMail address (if you have one). But to get that working reliably you need to set up OAuth2, which isn't very straight forward. So your best bet here is actually to use a dedicated Cloud/SaaS solution. A lot of them have a free tier that lets you send enough emails for a small production app. We'll be using SendInBlue that offers 300 free emails per day. So go ahead and create an account with SendInBlue. They'll ask for an address and a phone number. They need it to prevent users from creating accounts to send spam emails from. When your account is created and set up you need to click on the menu in the upper right with your company name and select the "SMTP & API" option. diff --git a/docs/docs/typescript.md b/docs/docs/typescript.md index cff72cd0963c..8f031546d173 100644 --- a/docs/docs/typescript.md +++ b/docs/docs/typescript.md @@ -17,7 +17,7 @@ yarn create redwood-app my-redwood-app --typescript ## Converting a JavaScript Project to TypeScript Started your project in JavaScript but want to switch to TypeScript? -Start by using the tsconfig setup command: +Start by using the `tsconfig` setup command: ``` yarn rw setup tsconfig