create-zuplo-api 6.51.80 → 6.51.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import type { ZudokuConfig } from "zudoku";
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* Developer Portal Configuration
|
|
5
|
+
* For more information, see:
|
|
6
|
+
* https://zuplo.com/docs/dev-portal/zudoku/configuration/overview
|
|
7
|
+
*/
|
|
3
8
|
const config: ZudokuConfig = {
|
|
4
9
|
page: {
|
|
5
10
|
pageTitle: "My Developer Portal",
|
|
@@ -68,9 +73,15 @@ const config: ZudokuConfig = {
|
|
|
68
73
|
files: "/pages/**/*.mdx",
|
|
69
74
|
},
|
|
70
75
|
authentication: {
|
|
76
|
+
// IMPORTANT: This is a demo Auth0 configuration.
|
|
77
|
+
// In a real application, you should replace these values with your own
|
|
78
|
+
// identity provider's configuration.
|
|
79
|
+
// This configuration WILL NOT WORK with custom domains.
|
|
80
|
+
// For more information, see:
|
|
81
|
+
// https://zuplo.com/docs/dev-portal/zudoku/configuration/authentication
|
|
71
82
|
type: "auth0",
|
|
72
|
-
domain: "auth.zuplo.
|
|
73
|
-
clientId: "
|
|
83
|
+
domain: "auth.zuplo.site",
|
|
84
|
+
clientId: "f8I87rdsCRo4nU2FHf0fHVwA9P7xi7Ml",
|
|
74
85
|
audience: "https://api.example.com/",
|
|
75
86
|
},
|
|
76
87
|
apiKeys: {
|