webscopeio / supabase-modules

Why start from zero?
https://supabase-modules-docs.vercel.app
2 stars 0 forks source link

Workspace

The Supabase Modules repository is a pnpm workspace managed using Turborepo. It includes the following applications:

Apps

Directory structure

There is no package/installable/CLI for the time being. The apps/** directory organizes by framework the modules source code and a Supabase project configuration for them.

For example, our Next.js app looks like this:

πŸ“‚ docs
πŸ“‚ apps
  πŸ“‚ next
    πŸ“ components
      πŸ“ user
    πŸ“ modules
      πŸ“ user
      πŸ“ types
      πŸ“ utils
    πŸ“ supabase
      πŸ“ migrations

Requirements

Install

To install dependencies, run the following command from the root repository:

pnpm install

Environment variables

Please refer to .env.example when working with environment variables. This repository is local-first development, so you should set all of your development variables in .env.local located in the root repository.

If you want to connect to a remote Supabase instance you can set all of your variables in .env located in the root repository.

If you do not have these, you may have to run Supabase locally first before development. Read more on Your Supabase Instance.

Develop

For development, run the following command from the root repository:

pnpm db:start && pnpm dev

Remember to run pnpm db:stop to save resources once you are done working with your local Supabase Instance.

If you intended to develop with a cloud hosted Supabase Instance you only need to run:

pnpm dev:remote

Build

To build, run the following command from the root repository:

pnpm build

Contributing

Excited to hear that you are interested in contributing to this project! Please visit Contributing

Documentation

To learn more about this project, please visit Supabase Modules Documentation.