Skip to content

Commit f772c8c

Browse files
committed
Few docs changes pertaining to tutorials [skip ci]
1 parent f2abd3b commit f772c8c

File tree

3 files changed

+19
-16
lines changed

3 files changed

+19
-16
lines changed

docs/.vitepress/config.mts

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ const config: UserConfig<DefaultTheme.Config> = {
4242
{ text: 'Intro', link: '/introduction' },
4343
{ text: 'Document DB', link: '/documents/', activeMatch: '/documents/' },
4444
{ text: 'Event Store', link: '/events/', activeMatch: '/events/' },
45+
{ text: 'Tutorials', link: '/tutorials/', activeMatch: '/tutorials/' },
4546
{ text: 'Migration', link: '/migration-guide' },
4647
{ text: 'Support Plans', link: 'https://www.jasperfx.net/support-plans/' },
4748
{ text: 'Join Chat', link: 'https://discord.gg/WMxrvegf8H' },
@@ -73,22 +74,6 @@ const config: UserConfig<DefaultTheme.Config> = {
7374

7475
sidebar: {
7576
'/': [
76-
{
77-
text: 'Tutorial',
78-
collapsed: true,
79-
items: [
80-
{ text: 'Building a Freight & Delivery System', link: '/tutorials/introduction' },
81-
{ text: 'Getting Started', link: '/tutorials/getting-started' },
82-
{ text: 'Modeling documents', link: '/tutorials/modeling-documents' },
83-
{ text: 'Evolve to event sourcing', link: '/tutorials/evolve-to-event-sourcing' },
84-
{ text: 'Event-Sourced Aggregate', link: '/tutorials/event-sourced-aggregate' },
85-
{ text: 'Read model projections', link: '/tutorials/read-model-projections' },
86-
{ text: 'Cross-Aggregate Views', link: '/tutorials/cross-aggregate-views' },
87-
{ text: 'Distributed systems with Wolverine', link: '/tutorials/wolverine-integration' },
88-
{ text: 'Advanced Considerations', link: '/tutorials/advanced-considerations' },
89-
{ text: 'Conclusion', link: '/tutorials/conclusion' }
90-
]
91-
},
9277
{
9378
text: 'Introduction',
9479
collapsed: true,
@@ -227,6 +212,22 @@ const config: UserConfig<DefaultTheme.Config> = {
227212
},
228213
]
229214
},
215+
{
216+
text: 'Tutorials',
217+
collapsed: true,
218+
items: [
219+
{ text: 'Building a Freight & Delivery System', link: '/tutorials/' },
220+
{ text: 'Getting Started', link: '/tutorials/getting-started' },
221+
{ text: 'Modeling documents', link: '/tutorials/modeling-documents' },
222+
{ text: 'Evolve to event sourcing', link: '/tutorials/evolve-to-event-sourcing' },
223+
{ text: 'Event-Sourced Aggregate', link: '/tutorials/event-sourced-aggregate' },
224+
{ text: 'Read model projections', link: '/tutorials/read-model-projections' },
225+
{ text: 'Cross-Aggregate Views', link: '/tutorials/cross-aggregate-views' },
226+
{ text: 'Distributed systems with Wolverine', link: '/tutorials/wolverine-integration' },
227+
{ text: 'Advanced Considerations', link: '/tutorials/advanced-considerations' },
228+
{ text: 'Conclusion', link: '/tutorials/conclusion' }
229+
]
230+
},
230231
{
231232
text: 'Testing',
232233
collapsed: true,

docs/getting-started.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,3 +148,5 @@ var store = DocumentStore
148148
```
149149
<sup><a href='https://github.com/JasperFx/marten/blob/master/src/Marten.Testing/Examples/ConfiguringDocumentStore.cs#L35-L38' title='Snippet source file'>snippet source</a> | <a href='#snippet-sample_start_a_store' title='Start of snippet'>anchor</a></sup>
150150
<!-- endSnippet -->
151+
152+
Please also check our [tutorials](/tutorials/) which introduces you to Marten through a real-world use case of building a freight and delivery management system using documents and event sourcing.
File renamed without changes.

0 commit comments

Comments
 (0)