/authentication-with-supabase

An authentication system using Supabase, Nest.js and Next.js

Primary LanguageTypeScript

Simple Authentication with Supabase

A simple project that I made to learn more about developing applications using Supabase. It's just an implementation of a login system that you can create an user and then sign in.

Demo of the application

👩‍💻 Technologies used

  • Nest.js (backend)
  • Next.js (frontend)
  • Supabase

🚀 How to run

First of all, you'll need to set up the enviroment.

Following the .env.example inside the each part of the system, implement .env file and insert the values of variables.

  • Frontend
cd ./frontend
yarn install

# production
yarn build
yarn start

# development
yarn dev
  • Backend
cd ./backend
yarn install

# production
yarn start

# development
yarn start:dev