create-zuplo-api 6.60.20 → 6.60.22

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.
Files changed (38) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +4 -4
  3. package/dist/templates/default/README-template.md +0 -29
  4. package/dist/templates/default/config/policies.json +0 -13
  5. package/dist/templates/default/config/routes.oas.json +0 -284
  6. package/dist/templates/default/docs/README-template.md +0 -45
  7. package/dist/templates/default/docs/gitignore +0 -32
  8. package/dist/templates/default/docs/pages/introduction.mdx +0 -153
  9. package/dist/templates/default/docs/pages/markdown.mdx +0 -108
  10. package/dist/templates/default/docs/public/banner-dark.svg +0 -100
  11. package/dist/templates/default/docs/public/banner.svg +0 -100
  12. package/dist/templates/default/docs/tsconfig.json +0 -16
  13. package/dist/templates/default/docs/zudoku.config.tsx +0 -93
  14. package/dist/templates/default/env.example +0 -2
  15. package/dist/templates/default/eslintrc.json +0 -7
  16. package/dist/templates/default/gitignore +0 -10
  17. package/dist/templates/default/modules/hello-world.ts +0 -21
  18. package/dist/templates/default/prettierrc.json +0 -1
  19. package/dist/templates/default/tsconfig.json +0 -19
  20. package/dist/templates/default/vscode/launch.json +0 -37
  21. package/dist/templates/default/vscode/settings.json +0 -20
  22. package/dist/templates/default/zuplo.jsonc +0 -4
  23. package/dist/templates/default-empty/config/policies.json +0 -3
  24. package/dist/templates/default-empty/config/routes.oas.json +0 -8
  25. package/dist/templates/default-empty/docs/README-template.md +0 -45
  26. package/dist/templates/default-empty/docs/gitignore +0 -32
  27. package/dist/templates/default-empty/docs/pages/introduction.mdx +0 -153
  28. package/dist/templates/default-empty/docs/pages/markdown.mdx +0 -108
  29. package/dist/templates/default-empty/docs/public/banner-dark.svg +0 -100
  30. package/dist/templates/default-empty/docs/public/banner.svg +0 -100
  31. package/dist/templates/default-empty/docs/tsconfig.json +0 -16
  32. package/dist/templates/default-empty/docs/zudoku.config.tsx +0 -93
  33. package/dist/templates/default-empty/env.example +0 -2
  34. package/dist/templates/default-empty/eslintrc.json +0 -7
  35. package/dist/templates/default-empty/gitignore +0 -10
  36. package/dist/templates/default-empty/prettierrc.json +0 -1
  37. package/dist/templates/default-empty/tsconfig.json +0 -19
  38. package/dist/templates/default-empty/zuplo.jsonc +0 -4
@@ -1,93 +0,0 @@
1
- import type { ZudokuConfig } from "zudoku";
2
-
3
- /**
4
- * Developer Portal Configuration
5
- * For more information, see:
6
- * https://zuplo.com/docs/dev-portal/zudoku/configuration/overview
7
- */
8
- const config: ZudokuConfig = {
9
- site: {
10
- title: "My Developer Portal",
11
- logo: {
12
- src: {
13
- light: "https://cdn.zuplo.com/assets/my-dev-portal-light.svg",
14
- dark: "https://cdn.zuplo.com/assets/my-dev-portal-dark.svg",
15
- },
16
- },
17
- },
18
- metadata: {
19
- title: "Developer Portal",
20
- description: "Developer Portal",
21
- },
22
- navigation: [
23
- {
24
- type: "category",
25
- label: "Documentation",
26
- items: [
27
- {
28
- type: "category",
29
- label: "Getting Started",
30
- icon: "sparkles",
31
- items: [
32
- {
33
- type: "doc",
34
- file: "introduction",
35
- },
36
- {
37
- type: "doc",
38
- file: "markdown",
39
- },
40
- ],
41
- },
42
- {
43
- type: "category",
44
- label: "Useful Links",
45
- collapsible: false,
46
- icon: "link",
47
- items: [
48
- {
49
- type: "link",
50
- label: "Zuplo Docs",
51
- to: "https://zuplo.com/docs/dev-portal/introduction",
52
- },
53
- {
54
- type: "link",
55
- label: "Developer Portal Docs",
56
- to: "https://zuplo.com/docs/dev-portal/introduction",
57
- },
58
- ],
59
- },
60
- ],
61
- },
62
- {
63
- type: "link",
64
- to: "/api",
65
- label: "API Reference",
66
- },
67
- ],
68
- redirects: [{ from: "/", to: "/api" }],
69
- apis: [
70
- {
71
- type: "file",
72
- input: "../config/routes.oas.json",
73
- path: "api",
74
- },
75
- ],
76
- authentication: {
77
- // IMPORTANT: This is a demo Auth0 configuration.
78
- // In a real application, you should replace these values with your own
79
- // identity provider's configuration.
80
- // This configuration WILL NOT WORK with custom domains.
81
- // For more information, see:
82
- // https://zuplo.com/docs/dev-portal/zudoku/configuration/authentication
83
- type: "auth0",
84
- domain: "auth.zuplo.site",
85
- clientId: "f8I87rdsCRo4nU2FHf0fHVwA9P7xi7Ml",
86
- audience: "https://api.example.com/",
87
- },
88
- apiKeys: {
89
- enabled: true,
90
- },
91
- };
92
-
93
- export default config;
@@ -1,2 +0,0 @@
1
- EXAMPLE_SECRET=👀 What you looking at?
2
- EXAMPLE_CONFIG=https://twitter.com/zuplo
@@ -1,7 +0,0 @@
1
- {
2
- "root": true,
3
- "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
4
- "parser": "@typescript-eslint/parser",
5
- "parserOptions": { "project": ["./tsconfig.json"] },
6
- "plugins": ["@typescript-eslint"]
7
- }
@@ -1,10 +0,0 @@
1
- .zuplo/
2
- .cache/
3
- dist/
4
- node_modules/
5
- .env
6
- .env.zuplo
7
-
8
- # OS Stuff
9
-
10
- .DS_Store
@@ -1,19 +0,0 @@
1
- {
2
- "include": ["modules/**/*", ".zuplo/**/*", "tests/**/*"],
3
- "exclude": ["./node_modules", "./dist"],
4
- "compilerOptions": {
5
- "module": "ESNext",
6
- "target": "ES2022",
7
- "lib": ["ESNext", "WebWorker", "Webworker.Iterable"],
8
- "preserveConstEnums": true,
9
- "moduleResolution": "Bundler",
10
- "useUnknownInCatchVariables": false,
11
- "forceConsistentCasingInFileNames": true,
12
- "importHelpers": true,
13
- "removeComments": true,
14
- "esModuleInterop": true,
15
- "noEmit": true,
16
- "strictNullChecks": true,
17
- "experimentalDecorators": true
18
- }
19
- }
@@ -1,4 +0,0 @@
1
- {
2
- "version": 1,
3
- "compatibilityDate": "2025-02-06"
4
- }