Skip to content

Commit ac5d10a

Browse files
Copilothuangyiirene
andcommitted
Changes before error encountered
Co-authored-by: huangyiirene <7665279+huangyiirene@users.noreply.github.com>
1 parent 2e1c14e commit ac5d10a

5 files changed

Lines changed: 94 additions & 5 deletions

File tree

README.md

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,31 @@ Object UI is perfect for:
292292

293293
## 🏗️ Examples
294294

295-
Check out complete example applications:
295+
### JSON Schema Examples (Recommended) 🚀
296+
297+
Explore ready-to-use JSON examples that showcase Object UI's capabilities:
298+
299+
```bash
300+
# Install CLI
301+
npm install -g @object-ui/cli
302+
303+
# Try different examples
304+
objectui serve examples/basic-form/app.json # Contact form
305+
objectui serve examples/dashboard/app.json # Analytics dashboard
306+
objectui serve examples/data-display/app.json # Data visualization
307+
objectui serve examples/landing-page/app.json # Marketing page
308+
```
309+
310+
**Available Examples:**
311+
- 📝 [**Basic Form**](./examples/basic-form) - Contact form with validation
312+
- 📊 [**Dashboard**](./examples/dashboard) - Analytics with metrics and feeds
313+
- 📋 [**Data Display**](./examples/data-display) - Lists, badges, progress bars
314+
- 🚀 [**Landing Page**](./examples/landing-page) - Full marketing page
315+
- 🎨 [**CLI Demo**](./examples/cli-demo) - Bilingual form demo
316+
317+
[**View All Examples →**](./examples)
318+
319+
### Full Application Examples
296320

297321
```bash
298322
# Clone the repository
@@ -302,12 +326,9 @@ cd objectui
302326
# Install dependencies
303327
pnpm install
304328

305-
# Run the playground
329+
# Run the interactive playground
306330
pnpm playground
307331

308-
# Run the visual designer demo
309-
pnpm designer
310-
311332
# Run the prototype example
312333
pnpm prototype
313334
```

examples/basic-form/.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Object UI temp files
2+
.objectui-tmp
3+
4+
# OS files
5+
.DS_Store
6+
Thumbs.db
7+
8+
# IDE files
9+
.vscode/
10+
.idea/
11+
*.swp
12+
*.swo
13+
*~
14+
15+
# Logs
16+
*.log
17+
npm-debug.log*

examples/dashboard/.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Object UI temp files
2+
.objectui-tmp
3+
4+
# OS files
5+
.DS_Store
6+
Thumbs.db
7+
8+
# IDE files
9+
.vscode/
10+
.idea/
11+
*.swp
12+
*.swo
13+
*~
14+
15+
# Logs
16+
*.log
17+
npm-debug.log*

examples/data-display/.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Object UI temp files
2+
.objectui-tmp
3+
4+
# OS files
5+
.DS_Store
6+
Thumbs.db
7+
8+
# IDE files
9+
.vscode/
10+
.idea/
11+
*.swp
12+
*.swo
13+
*~
14+
15+
# Logs
16+
*.log
17+
npm-debug.log*

examples/landing-page/.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Object UI temp files
2+
.objectui-tmp
3+
4+
# OS files
5+
.DS_Store
6+
Thumbs.db
7+
8+
# IDE files
9+
.vscode/
10+
.idea/
11+
*.swp
12+
*.swo
13+
*~
14+
15+
# Logs
16+
*.log
17+
npm-debug.log*

0 commit comments

Comments
 (0)