Files
supabase/apps/docs/content/guides/resources.mdx
2026-06-01 15:55:06 +02:00

262 lines
6.4 KiB
Plaintext

---
title: 'Resources'
description: 'Resources for getting started building with Supabase.'
hideToc: true
---
{/* <!-- vale off --> */}
<div className="flex flex-col gap-12 my-12">
<div>
<div className="grid grid-cols-12 gap-6 not-prose">
<Link href="/guides/resources/examples" className="col-span-12 md:col-span-4" passHref>
<GlassPanel title="Examples" hasLightIcon={true} background={false} showIconBg={true}>
Official GitHub examples, curated content from the community, and more.
</GlassPanel>
</Link>
<Link href="/guides/resources/glossary" className="col-span-12 md:col-span-4" passHref>
<GlassPanel title="Glossary" hasLightIcon={true} background={false} showIconBg={true}>
Definitions for terminology and acronyms used in the Supabase documentation.
</GlassPanel>
</Link>
</div>
</div>
<div>
<div className="max-w-xl mb-6">
### Migrate to Supabase
</div>
<div className="grid grid-cols-12 gap-6 not-prose">
<Link
href="/guides/resources/migrating-to-supabase/auth0"
className="col-span-6 md:col-span-3"
passHref
>
<IconPanel
title="Auth0"
icon="/docs/img/icons/auth0-icon"
hasLightIcon={true}
background={true}
showIconBg={true}
showLink={true}
>
Move your auth users from Auth0 to a Supabase project.
</IconPanel>
</Link>
<Link
href="/guides/resources/migrating-to-supabase/firebase-auth"
className="col-span-6 md:col-span-3"
passHref
>
<IconPanel
title="Firebase Auth"
icon="/docs/img/icons/firebase-icon"
background={true}
showIconBg={true}
showLink={true}
>
Move your auth users from a Firebase project to a Supabase project.
</IconPanel>
</Link>
<Link
href="/guides/resources/migrating-to-supabase/firestore-data"
className="col-span-6 md:col-span-3"
passHref
>
<IconPanel
title="Firestore Data"
icon="/docs/img/icons/firebase-icon"
background={true}
showIconBg={true}
showLink={true}
>
Migrate the contents of a Firestore collection to a single Postgres table.
</IconPanel>
</Link>
<Link
href="/guides/resources/migrating-to-supabase/firebase-storage"
className="col-span-6 md:col-span-3"
passHref
>
<IconPanel
title="Firebase Storage"
icon="/docs/img/icons/firebase-icon"
background={true}
showIconBg={true}
showLink={true}
>
Convert your Firebase Storage files to Supabase Storage.
</IconPanel>
</Link>
<Link
href="/guides/resources/migrating-to-supabase/heroku"
className="col-span-6 md:col-span-3"
passHref
>
<IconPanel
title="Heroku"
icon="/docs/img/icons/heroku-icon"
background={true}
showIconBg={true}
showLink={true}
>
Migrate your Heroku Postgres database to Supabase.
</IconPanel>
</Link>
<Link
href="/guides/resources/migrating-to-supabase/render"
className="col-span-6 md:col-span-3"
passHref
>
<IconPanel
title="Render"
icon="/docs/img/icons/render-icon"
background={true}
showIconBg={true}
showLink={true}
>
Migrate your Render Postgres database to Supabase.
</IconPanel>
</Link>
<Link
href="/guides/resources/migrating-to-supabase/amazon-rds"
className="col-span-6 md:col-span-3"
passHref
>
<IconPanel
title="Amazon RDS"
icon="/docs/img/icons/aws-rds-icon"
background={true}
showIconBg={true}
showLink={true}
>
Migrate your Amazon RDS database to Supabase.
</IconPanel>
</Link>
<Link
href="/guides/resources/migrating-to-supabase/postgres"
className="col-span-6 md:col-span-3"
passHref
>
<IconPanel
title="Postgres"
icon="/docs/img/icons/postgres-icon"
background={true}
showIconBg={true}
showLink={true}
>
Migrate your Postgres database to Supabase.
</IconPanel>
</Link>
<Link
href="/guides/resources/migrating-to-supabase/mysql"
className="col-span-6 md:col-span-3"
passHref
>
<IconPanel
title="MySQL"
icon="/docs/img/icons/mysql-icon"
background={true}
showIconBg={true}
showLink={true}
>
Migrate your MySQL database to Supabase.
</IconPanel>
</Link>
<Link
href="/guides/resources/migrating-to-supabase/mssql"
className="col-span-6 md:col-span-3"
passHref
>
<IconPanel
title="Microsoft SQL Server"
icon="/docs/img/icons/mssql-icon"
background={true}
showIconBg={true}
showLink={true}
>
Migrate your Microsoft SQL Server database to Supabase.
</IconPanel>
</Link>
</div>
</div>
<div>
<div className="max-w-xl mb-6">
### Postgres resources
</div>
<div className="grid grid-cols-12 gap-6 not-prose">
<Link href="/guides/database/postgres/indexes" className="col-span-12 md:col-span-4" passHref>
<GlassPanel title="Managing Indexes" hasLightIcon={true} background={false} showIconBg={true}>
Improve query performance using various index types in Postgres.
</GlassPanel>
</Link>
<Link
href="/guides/database/postgres/cascade-deletes"
className="col-span-12 md:col-span-4"
passHref
>
<GlassPanel title="Cascade Deletes" hasLightIcon={true} background={false} showIconBg={true}>
Understand the types of foreign key constraint deletes.
</GlassPanel>
</Link>
<Link
href="/guides/database/postgres/dropping-all-tables-in-schema"
className="col-span-12 md:col-span-4"
passHref
>
<GlassPanel
title="Drop all tables in schema"
hasLightIcon={true}
background={false}
showIconBg={true}
>
Delete all tables in a given schema.
</GlassPanel>
</Link>
<Link
href="/guides/database/postgres/first-row-in-group"
className="col-span-12 md:col-span-4"
passHref
>
<GlassPanel
title="Select first row per group"
hasLightIcon={true}
background={false}
showIconBg={true}
>
Retrieve the first row in each distinct group.
</GlassPanel>
</Link>
<Link
href="/guides/database/postgres/which-version-of-postgres"
className="col-span-12 md:col-span-4"
passHref
>
<GlassPanel
title="Print Postgres version"
hasLightIcon={true}
background={false}
showIconBg={true}
>
Find out which version of Postgres you are running.
</GlassPanel>
</Link>
</div>
</div>
{/* end of container */}
</div>