Skip to content

Commit 50c7e5c

Browse files
Copilothuangyiirene
andcommitted
Merge example directory into examples/starter
Co-authored-by: huangyiirene <7665279+huangyiirene@users.noreply.github.com>
1 parent c405be8 commit 50c7e5c

23 files changed

Lines changed: 263 additions & 402 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ This repository is a monorepo managed by pnpm workspaces:
181181

182182
## 📚 Examples
183183

184-
- **[example](./example)**: A complete standalone project demonstrating CLI-created project structure. Use this to test Vercel deployment and validate that published npm packages work correctly outside the monorepo.
184+
- **[examples/starter](./examples/starter)**: A complete starter template demonstrating the recommended project structure. Includes comprehensive documentation on architecture, testing, and deployment guides. Ready for production use on Vercel and other platforms.
185185

186186
## 🤝 Contributing
187187

example/.gitignore

Lines changed: 0 additions & 36 deletions
This file was deleted.

example/README.md

Lines changed: 0 additions & 206 deletions
This file was deleted.

example/content/docs.site.json

Lines changed: 0 additions & 23 deletions
This file was deleted.

example/content/docs/index.mdx

Lines changed: 0 additions & 45 deletions
This file was deleted.

example/content/docs/meta.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

example/package.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

examples/starter/.gitignore

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
1-
node_modules
2-
.next
3-
out
4-
.env
1+
# Dependencies
2+
node_modules/
3+
.pnp
4+
.pnp.js
5+
6+
# Testing
7+
coverage/
8+
9+
# Next.js
10+
.next/
11+
out/
12+
13+
# Production
14+
build/
15+
dist/
16+
17+
# Misc
518
.DS_Store
19+
*.pem
20+
21+
# Debug
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*
25+
pnpm-debug.log*
26+
27+
# Local env files
28+
.env
29+
.env*.local
30+
31+
# Vercel
32+
.vercel
33+
34+
# TypeScript
35+
*.tsbuildinfo
36+
next-env.d.ts
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)