Skip to content

Commit 996b92d

Browse files
committed
fix doc links
1 parent 68da0dc commit 996b92d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ graphqlAuthentication: graphqlAuthenticationConfig({
108108
});
109109
```
110110

111-
However, this package does not provide the email templates itself for you, since these differ too much. You can [**copy the email templates**](./example/emails) from our example to get started.
111+
However, this package does not provide the email templates itself for you, since these differ too much. You can [**copy the email templates**](https://github.com/Volst/graphql-authentication/tree/master/examples/with-prisma/emails) from our example to get started.
112112

113113
# Documentation
114114

packages/graphql-authentication-prisma/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ npm i graphql-authentication graphql-authentication-prisma email-templates
1313

1414
# Usage with Prisma
1515

16+
You can read the guide below or checkout [the example](https://github.com/Volst/graphql-authentication/tree/master/examples/with-prisma) to see the full code.
17+
1618
## Step 1
1719

1820
Read the [Usage](https://github.com/Volst/graphql-authentication/blob/master/README.md#usage) section in the full documentation first.
@@ -34,6 +36,6 @@ graphqlAuthentication: graphqlAuthenticationConfig({
3436

3537
## Step 3
3638

37-
In your Prisma `datamodel.graphql` file, add this [User model](./example/datamodel.graphql). Run `prisma deploy` to run the migrations.
39+
In your Prisma `datamodel.graphql` file, add this [User model](https://github.com/Volst/graphql-authentication/blob/master/examples/with-prisma/datamodel.graphql). Run `prisma deploy` to run the migrations.
3840

3941
### [Full Documentation](https://github.com/Volst/graphql-authentication/blob/master/README.md#documentation)

packages/graphql-authentication/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"build": "rm -rf dist && tsc -p tsconfig.build.json",
2626
"lint": "tslint -p .",
2727
"prepublishOnly": "npm run -s build",
28-
"start": "nodemon -e ts,graphql -x ts-node example/index.ts",
2928
"test": "jest --watch",
3029
"test-coverage": "jest --coverage",
3130
"ci": "npm run -s lint && npm run -s build && npm run -s test-coverage && codecov",

0 commit comments

Comments
 (0)