Домой United States USA — software Supabase and Nuxt 3 Quickstart Guide

Supabase and Nuxt 3 Quickstart Guide

138
0
ПОДЕЛИТЬСЯ

This example provides the steps to build a simple user management app (from scratch!) using Supabase and Nuxt 3.
Join the DZone community and get the full member experience.
This example provides the steps to build a simple user management app (from scratch!) using Supabase and Svelte. It includes:
By the end of this guide you’ll have an app that allows users to log in and update some basic profile details:
Whenever you get stuck at any point, take a look at this repo.
Before we start building we’re going to set up our database and API. This is as simple as starting a new project in Supabase and then creating a «schema» inside the database.
Now we are going to set up the database schema. We can use the «User Management Starter» quickstart in the SQL editor, or you can just copy/paste the SQL from below and run it yourself.
Now that you’ve created some database tables, you are ready to insert data using the auto-generated API. We just need to get the URL and anon key from the API settings.

Continue reading...