create-zudoku 0.0.0-e95e2f88 → 0.0.0-e9eb12fc

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 (37) hide show
  1. package/LICENSE.md +12 -3
  2. package/README.md +15 -8
  3. package/dist/index.js +6 -6
  4. package/dist/templates/default/js/.env.example +2 -0
  5. package/dist/templates/default/js/README-template.md +28 -0
  6. package/dist/templates/default/js/apis/openapi.yaml +806 -0
  7. package/dist/templates/default/js/eslintrc.json +4 -0
  8. package/dist/templates/default/js/gitignore +32 -0
  9. package/dist/templates/default/js/pages/example.mdx +9 -0
  10. package/dist/templates/default/js/pages/introduction.mdx +16 -0
  11. package/dist/templates/default/js/public/logo-dark.svg +1 -0
  12. package/dist/templates/default/js/public/logo-light.svg +1 -0
  13. package/dist/templates/default/js/zudoku.config.jsx +65 -0
  14. package/dist/templates/default/ts/.env.example +2 -0
  15. package/dist/templates/default/ts/README-template.md +28 -0
  16. package/dist/templates/default/ts/apis/openapi.yaml +806 -0
  17. package/dist/templates/default/ts/eslintrc.json +6 -0
  18. package/dist/templates/default/ts/gitignore +32 -0
  19. package/dist/templates/default/ts/pages/example.mdx +9 -0
  20. package/dist/templates/default/ts/pages/introduction.mdx +16 -0
  21. package/dist/templates/default/ts/public/banner-dark.svg +100 -0
  22. package/dist/templates/default/ts/public/banner.svg +100 -0
  23. package/dist/templates/default/ts/public/logo-dark.svg +1 -0
  24. package/dist/templates/default/ts/public/logo-light.svg +1 -0
  25. package/dist/templates/default/ts/tsconfig.json +16 -0
  26. package/dist/templates/default/ts/zudoku.config.tsx +66 -0
  27. package/dist/templates/index.ts +156 -0
  28. package/dist/templates/types.ts +22 -0
  29. package/dist/templates/zuplo/README-template.md +40 -0
  30. package/dist/templates/zuplo/gitignore +32 -0
  31. package/dist/templates/zuplo/pages/introduction.mdx +153 -0
  32. package/dist/templates/zuplo/pages/markdown.mdx +108 -0
  33. package/dist/templates/zuplo/public/banner-dark.svg +100 -0
  34. package/dist/templates/zuplo/public/banner.svg +100 -0
  35. package/dist/templates/zuplo/tsconfig.json +16 -0
  36. package/dist/templates/zuplo/zudoku.config.tsx +93 -0
  37. package/package.json +4 -4
@@ -0,0 +1,2 @@
1
+ # Rename this file to `.env` to use environment variables locally
2
+ ZUDOKU_PUBLIC_VAR="my-value"
@@ -0,0 +1,28 @@
1
+ # Zudoku App
2
+
3
+ This Zudoku app that was created with [`create-zudoku`](https://zudoku.dev/docs).
4
+
5
+ ## Getting Started
6
+
7
+ First, run the development server:
8
+
9
+ ```bash
10
+ npm run dev
11
+ # or
12
+ yarn dev
13
+ # or
14
+ pnpm dev
15
+ ```
16
+
17
+ Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
18
+
19
+ You can start editing the page by modifying `pages/intro.mdx`. You will see the content
20
+ automatically update as you save the file.
21
+
22
+ ## Learn More
23
+
24
+ To learn more about Zudoku, you can visit the [Zudoku documentation](https://zudoku.dev/docs).
25
+
26
+ To connect with the community join the
27
+ [GitHub Discussions](https://github.com/zuplo/zudoku/discussions) or
28
+ [Discord](https://discord.zudoku.dev).