mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-27 11:03:14 +03:00
75245747d2
* Initial docs update for Hacktoberfest * Contributing.md update * Update "Before you begin" section * Update web/docs/tutorials/dev-excuses-app/creating-the-project.md Co-authored-by: Martin Šošić <Martinsos@users.noreply.github.com> * Update web/docs/tutorials/dev-excuses-app/updating-main-page-js-file.md Co-authored-by: Martin Šošić <Martinsos@users.noreply.github.com> * Update CONTRIBUTING.md Co-authored-by: Martin Šošić <Martinsos@users.noreply.github.com> * Update web/docs/tutorials/dev-excuses-app/modifying-main-wasp-file.md Co-authored-by: Martin Šošić <Martinsos@users.noreply.github.com> * Update the section names * Update CONTRIBUTING.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update web/docs/tutorials/dev-excuses-app/updating-main-page-js-file.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update web/docs/contributing.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update web/docs/contributing.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update web/docs/contributing.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Add Discord component and some minor fixes * Add unclear notice * Update web/docs/pick-a-tutorial.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update web/docs/tutorials/dev-excuses-app.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update web/docs/tutorials/dev-excuses-app.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update web/docs/tutorials/dev-excuses-app.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update CONTRIBUTING.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update web/docs/tutorials/dev-excuses-app/modifying-main-wasp-file.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update web/docs/getting-started.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update web/docs/tutorials/dev-excuses-app/modifying-main-wasp-file.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Review updates * Update web/docs/tutorials/dev-excuses-app/modifying-main-wasp-file.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update suggestion * Update web/docs/tutorials/dev-excuses-app/perform-migration-and-run.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update web/docs/tutorials/dev-excuses-app/perform-migration-and-run.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update * Update web/docs/tutorials/dev-excuses-app/updating-main-page-js-file.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update CONTRIBUTING.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Remove lines * Update CONTRIBUTING.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update CONTRIBUTING.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update CONTRIBUTING.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update getExcuse function * Update page naming convention * Remove Main.css * Update migration text * Update image * Update "Wasp's compiler is built with Haskell" * Add tutorials description * Update web/docs/pick-a-tutorial.md Co-authored-by: Matija Sosic <matija.sosic@gmail.com> * Update Discord link and tutorial ending * Update links Co-authored-by: mkhamrov <mkhamrov@redhat.com> Co-authored-by: Martin Šošić <Martinsos@users.noreply.github.com> Co-authored-by: Matija Sosic <matija.sosic@gmail.com>
91 lines
2.1 KiB
JavaScript
91 lines
2.1 KiB
JavaScript
module.exports = {
|
|
docs: [
|
|
{
|
|
type: 'category',
|
|
label: 'Introduction',
|
|
collapsed: false,
|
|
items: [
|
|
'getting-started',
|
|
'about',
|
|
'how-it-works',
|
|
'pick-a-tutorial'
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Tutorials',
|
|
collapsed: false,
|
|
items: [
|
|
{
|
|
type: 'category',
|
|
label: 'Todo app',
|
|
collapsed: true,
|
|
items: [
|
|
'tutorials/todo-app',
|
|
{
|
|
type: 'category',
|
|
label: 'Basics',
|
|
collapsed: true,
|
|
items: [
|
|
'tutorials/todo-app/01-creating-new-project',
|
|
'tutorials/todo-app/02-task-entity',
|
|
'tutorials/todo-app/03-listing-tasks',
|
|
'tutorials/todo-app/04-creating-tasks',
|
|
'tutorials/todo-app/05-updating-tasks'
|
|
]
|
|
},
|
|
'tutorials/todo-app/06-auth',
|
|
'tutorials/todo-app/07-dependencies',
|
|
'tutorials/todo-app/08-the-end'
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Dev Excuses app',
|
|
collapsed: true,
|
|
items: [
|
|
'tutorials/dev-excuses-app',
|
|
'tutorials/dev-excuses-app/01-creating-the-project',
|
|
'tutorials/dev-excuses-app/02-modifying-main-wasp-file',
|
|
'tutorials/dev-excuses-app/03-adding-operations',
|
|
'tutorials/dev-excuses-app/04-updating-main-page-js-file',
|
|
'tutorials/dev-excuses-app/05-perform-migration-and-run',
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Language',
|
|
collapsed: false,
|
|
items: [
|
|
'language/overview',
|
|
'language/syntax',
|
|
'language/features'
|
|
]
|
|
},
|
|
'cli',
|
|
'deploying',
|
|
'examples',
|
|
{
|
|
type: 'category',
|
|
label: 'Integrations',
|
|
collapsed: false,
|
|
items: [
|
|
'integrations/google'
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Other',
|
|
collapsed: false,
|
|
items: [
|
|
'contributing',
|
|
'vision',
|
|
'telemetry',
|
|
'contact'
|
|
]
|
|
}
|
|
]
|
|
}
|