Files
supabase/web/sidebars.js
2022-03-31 15:14:27 +02:00

249 lines
6.2 KiB
JavaScript
Executable File

/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
const supabaseClient = require('./sidebar_spec_supabase')
const supabaseCli = require('./sidebar_spec_cli')
const dart = require('./sidebar_spec_dart')
module.exports = {
supabaseClient: [
{
type: 'category',
label: 'Javascript',
collapsed: false,
items: supabaseClient.docs,
},
// {
// type: 'category',
// label: 'Postgres',
// collapsed: false,
// items: postgres.docs,
// },
{
type: 'category',
label: 'Dart',
collapsed: false,
items: dart.docs,
},
{
type: 'category',
label: 'CLI',
collapsed: false,
items: supabaseCli.docs,
},
],
docs: [
{
type: 'category',
label: 'Overview',
items: [
'about',
'architecture',
'guides/hosting/platform',
'guides/local-development',
'guides/examples',
],
collapsed: false,
},
{
type: 'category',
label: 'Quickstarts',
collapsed: false,
items: [
'guides/with-angular',
'guides/with-expo',
'guides/with-flutter',
'guides/with-ionic-angular',
'guides/with-ionic-react',
'guides/with-ionic-vue',
'guides/with-nextjs',
'guides/with-react',
'guides/with-redwoodjs',
'guides/with-svelte',
'guides/with-vue-3',
],
},
{
type: 'category',
label: 'Database',
collapsed: false,
items: [
'guides/database',
'guides/database/connecting-to-postgres',
'guides/database/tables',
'guides/database/functions',
'guides/database/full-text-search',
// 'guides/database/json',
// 'guides/database/arrays',
// 'guides/database/sql-to-api',
{
type: 'category',
label: 'Extensions',
collapsed: true,
items: [
'guides/database/extensions',
// 'guides/database/extensions/pgtap',
'guides/database/extensions/plv8',
'guides/database/extensions/http',
'guides/database/extensions/uuid-ossp',
],
},
{
type: 'category',
label: 'Configuration',
collapsed: true,
items: [
'guides/database/timeouts',
'guides/database/replication',
'guides/database/managing-passwords',
'guides/database/managing-timezones',
],
},
],
},
{
type: 'category',
label: 'APIs',
collapsed: false,
items: ['guides/api'],
},
{
type: 'category',
label: 'Functions',
collapsed: false,
items: ['guides/functions'],
},
{
type: 'category',
label: 'Auth',
collapsed: false,
items: [
'guides/auth',
{
type: 'category',
label: 'Authentication',
collapsed: true,
items: [
'guides/auth/auth-email',
'guides/auth/auth-magic-link',
'guides/auth/auth-apple',
'guides/auth/auth-azure',
'guides/auth/auth-bitbucket',
'guides/auth/auth-discord',
'guides/auth/auth-facebook',
'guides/auth/auth-github',
'guides/auth/auth-gitlab',
'guides/auth/auth-google',
'guides/auth/auth-keycloak',
'guides/auth/auth-linkedin',
'guides/auth/auth-notion',
'guides/auth/auth-slack',
'guides/auth/auth-spotify',
'guides/auth/auth-twitch',
'guides/auth/auth-twitter',
'guides/auth/auth-workos',
'guides/auth/auth-zoom',
'guides/auth/auth-twilio',
'guides/auth/auth-vonage',
'guides/auth/auth-messagebird',
],
},
{
type: 'category',
label: 'Authorization',
collapsed: true,
items: ['guides/auth/row-level-security', 'guides/auth/managing-user-data'],
},
{
type: 'category',
label: 'Deep Dive',
collapsed: true,
items: [
'learn/auth-deep-dive/auth-deep-dive-jwts',
'learn/auth-deep-dive/auth-row-level-security',
'learn/auth-deep-dive/auth-policies',
'learn/auth-deep-dive/auth-gotrue',
'learn/auth-deep-dive/auth-google-oauth',
],
},
],
},
{
type: 'category',
label: 'Storage',
collapsed: false,
items: ['guides/storage'],
},
{
type: 'category',
label: 'Platform',
collapsed: false,
items: ['guides/platform/logs'],
},
{
type: 'category',
label: 'Self Hosting',
collapsed: false,
items: ['guides/hosting/overview', 'guides/hosting/docker'],
},
{
type: 'category',
label: 'Integrations',
collapsed: false,
items: [
'guides/integrations/appsmith',
'guides/integrations/auth0',
'guides/integrations/clerk',
'guides/integrations/draftbit',
'guides/integrations/pgmustard',
'guides/integrations/plasmic',
'guides/integrations/prisma',
'guides/integrations/snaplet',
'guides/integrations/stytch',
'guides/integrations/vercel',
],
},
{
type: 'category',
label: 'See Also',
collapsed: false,
items: [
'faq',
'going-into-prod',
'handbook/contributing',
'handbook/supasquad',
'company/terms',
'company/privacy',
'company/aup',
'company/sla',
],
},
],
postgresServer: [
{
type: 'category',
label: 'Postgres',
collapsed: false,
items: ['postgres/server/about'],
},
{
type: 'category',
label: 'Self hosting',
collapsed: false,
items: ['postgres/server/docker', 'postgres/server/aws', 'postgres/server/digitalocean'],
},
],
postgresApi: [
{
type: 'category',
label: 'Postgres API',
collapsed: false,
items: ['postgres/api/about'],
},
],
}