Skip to content

Commit fe6c72c

Browse files
committed
documentation update
1 parent c6b472f commit fe6c72c

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

website/.vitepress/config.mts

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ export default defineConfig({
1414

1515
sidebar: [
1616
{
17-
text: 'Getting Started'
17+
text: 'Introduction',
18+
items: [
19+
{ text: 'Getting Started', link: '/getting-started' }
20+
]
1821
},
1922
{
2023
text: 'API',
@@ -23,19 +26,13 @@ export default defineConfig({
2326
{ text: 'Batchable', link: '/api/batchable' },
2427
{ text: 'Schedulable', link: '/api/schedulable' }
2528
]
26-
},
27-
{
28-
text: 'Examples',
29-
items: [
30-
{ text: 'Queueable', link: '/examples/queueable' },
31-
{ text: 'Batchable', link: '/examples/batchable' },
32-
{ text: 'Schedulable', link: '/examples/schedulable' }
33-
]
3429
}
3530
],
3631

3732
socialLinks: [
38-
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
33+
{ icon: 'github', link: 'https://github.com/beyond-the-cloud-dev/async-lib' },
34+
{ icon: 'linkedin', link: 'https://www.linkedin.com/company/beyondtheclouddev' }
35+
3936
]
4037
}
4138
})

website/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,12 @@ hero:
1717
features:
1818
- title: Smart Queueable Jobs
1919
details: Automatically handles "Too many queueable jobs" errors through intelligent chaining and batch overflow. Features priority-based execution, sophisticated error handling, and powerful finalizers for cleanup logic.
20+
link: /api/queueable
2021
- title: Unified Batch Processing
2122
details: Execute batch jobs immediately or schedule them for later with configurable scope sizes. Convert any batch job to schedulable with a single method call. Built-in error handling and result tracking.
23+
link: /api/batchable
2224
- title: Flexible Scheduling
2325
details: Intuitive CronBuilder for complex scheduling patterns. Convert queueable or batch jobs to schedulable effortlessly. Support for business hours, recurring intervals, and custom cron expressions.
26+
link: /api/schedulable
2427
---
2528

0 commit comments

Comments
 (0)