Skip to content
This repository has been archived by the owner on Feb 24, 2021. It is now read-only.

Correct reference implementation link. #84

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/next.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ ENTRYPOINT [ "npm", "run"]
CMD [ "start" ]
```

Note: To avoid noise, from now on I'll avoid mentioning `.dockerignore` and `package.json` files and other small details. Also, tutorials get out of date quickly, so if things have changed, refer to the [reference implementation](github.com/nmaro/staart/example/staart)).
Note: To avoid noise, from now on I'll avoid mentioning `.dockerignore` and `package.json` files and other small details. Also, tutorials get out of date quickly, so if things have changed, refer to the [reference implementation](https://github.com/nmaro/staart/tree/master/examples/staart)).

## Authentication Microservice (Ooth)

Expand Down Expand Up @@ -374,7 +374,7 @@ oothLocal({ ooth }); // That was quick, wasn't it?
Note: I'll not go into it here, but if you want to
send emails you'll need to add another package
called `ooth-local-emailer`. It requires you
to provide a `sendMail` function. Again, I'd like to refer to the [reference implementation](github.com/nmaro/staart/example/staart).
to provide a `sendMail` function. Again, I'd like to refer to the [reference implementation](https://github.com/nmaro/staart/tree/master/examples/staart).

We also want users to be able to log in with Facebook and Google, this is how we do it:

Expand Down Expand Up @@ -866,7 +866,7 @@ And finally we get to see pages of our application (in the `pages` folder):
└── verify-email.js
```

Let's look at a couple of them (remember, here's the [reference implementation](https://github.com/nmaro/staart)).
Let's look at a couple of them (remember, here's the [reference implementation](https://github.com/nmaro/staart/tree/master/examples/staart)).

This is how an `index.js` file could look like:

Expand Down