Look at the Demo
SupaNuxt is a simple user management application built with Nuxt.js, Nuxt UI, Pinia, and Supabase. This application includes an authentication system and allows users to access their accounts via a magic link powered by Supabase.
Tip
Feel free to contribute, report issues, or suggest improvements!
- User authentication using Supabase.
- Magic login links sent via email for easy access.
- Global Pinia store for managing application state across components and pages.
- Nuxt 3
- Nuxt UI
- Supabase
- Pinia
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Configure your Supabase environment variables.
.env:
SUPABASE_URL = ""
SUPABASE_KEY = ""
Start the development server on http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.