wasp/web/sidebars.js

81 lines
1.9 KiB
JavaScript
Raw Normal View History

module.exports = {
docs: [
{
2023-04-12 16:34:00 +03:00
type: "category",
label: "Getting started",
collapsed: false,
items: [
"introduction/what-is-wasp",
"introduction/getting-started"
],
},
{
2023-04-12 16:34:00 +03:00
type: "category",
label: "Tutorials",
collapsed: false,
items: [
{
2023-04-12 16:34:00 +03:00
type: "category",
label: "Todo app",
collapsed: true,
items: [
2023-04-12 16:34:00 +03:00
"tutorials/todo-app",
{
2023-04-12 16:34:00 +03:00
type: "category",
label: "Basics",
collapsed: true,
items: [
2023-04-12 16:34:00 +03:00
"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",
],
},
2023-04-12 16:34:00 +03:00
"tutorials/todo-app/06-auth",
"tutorials/todo-app/07-dependencies",
"tutorials/todo-app/08-the-end",
],
Docs update for Hacktoberfest (#731) * 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>
2022-09-30 15:31:09 +03:00
},
2023-04-12 16:34:00 +03:00
],
},
2023-04-12 16:34:00 +03:00
"examples",
{
type: "category",
label: "Guides",
2023-01-30 15:48:05 +03:00
collapsed: false,
items: [
2023-04-12 16:34:00 +03:00
"guides/auth-ui",
2023-01-30 15:48:05 +03:00
{
2023-04-12 16:34:00 +03:00
type: "category",
label: "Auth Providers",
2023-01-30 15:48:05 +03:00
collapsed: false,
items: [
2023-04-12 16:34:00 +03:00
"integrations/github",
"integrations/google",
"guides/email-auth",
],
2023-01-30 15:48:05 +03:00
},
2023-04-12 16:34:00 +03:00
"integrations/css-frameworks",
"deploying",
"typescript",
"guides/testing",
"guides/sending-emails",
2023-01-30 15:48:05 +03:00
],
},
{
2023-04-12 16:34:00 +03:00
type: "category",
label: "Language",
collapsed: false,
2023-04-12 16:34:00 +03:00
items: ["language/overview", "language/syntax", "language/features"],
},
2023-04-12 16:34:00 +03:00
"cli",
{
2023-04-12 16:34:00 +03:00
type: "category",
label: "Other",
2023-01-30 15:48:05 +03:00
collapsed: true,
2023-04-12 16:34:00 +03:00
items: ["contributing", "vision", "telemetry", "contact"],
},
],
};