{"id":45157638,"url":"https://github.com/webscopeio/supabase-modules","last_synced_at":"2026-02-20T05:04:02.136Z","repository":{"id":223314051,"uuid":"754365946","full_name":"webscopeio/supabase-modules","owner":"webscopeio","description":"Why start from zero?","archived":false,"fork":false,"pushed_at":"2024-05-29T13:50:43.000Z","size":1306,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":10,"default_branch":"main","last_synced_at":"2024-05-30T03:26:30.764Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://supabase-modules-docs.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/webscopeio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-07T22:42:22.000Z","updated_at":"2024-05-30T03:26:36.336Z","dependencies_parsed_at":null,"dependency_job_id":"51fbb1f4-d4bf-40a6-acf7-165e19a08691","html_url":"https://github.com/webscopeio/supabase-modules","commit_stats":null,"previous_names":["iamhectorsosa/supabase-modules","webscopeio/supabase-modules"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/webscopeio/supabase-modules","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webscopeio%2Fsupabase-modules","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webscopeio%2Fsupabase-modules/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webscopeio%2Fsupabase-modules/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webscopeio%2Fsupabase-modules/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/webscopeio","download_url":"https://codeload.github.com/webscopeio/supabase-modules/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webscopeio%2Fsupabase-modules/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29641936,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T03:21:14.183Z","status":"ssl_error","status_checked_at":"2026-02-20T03:18:24.455Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-20T05:03:20.644Z","updated_at":"2026-02-20T05:04:02.132Z","avatar_url":"https://github.com/webscopeio.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Workspace\n\nThe Supabase Modules repository is a pnpm workspace managed using [Turborepo](https://turbo.build/repo). It includes the following applications:\n\n## Apps\n\n- `docs`: a [Vitepress](https://vitepress.dev/) app - to learn about the project\n- `apps/next`: a [Next.js](https://nextjs.org/) app - to use the project\n\n### Directory structure\n\nThere 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.\n\nFor example, our [Next.js](https://nextjs.org/) app looks like this:\n\n```\n📂 docs\n📂 apps\n  📂 next\n    📁 database\n      📁 client\n      📁 types\n      📁 utils\n    📁 supabase\n      📁 migrations\n```\n\n- The UI lives colocated in the route's `_components` directory that belongs to the module demo'd.\n- The logic lives in the `/database` directory categorized by module name.\n- The database configuration lives in the `/supabase` directory where migrations can be identified by module name i.e. _profiles.sql_.\n\n## Requirements\n\n- Node: `\u003e=20`,\n- Package manager: `pnpm@8.15.1`\n\n## Install\n\nTo install dependencies, run the following command from the root repository:\n\n```bash\npnpm install\n```\n\n## Environment variables\n\nPlease 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.\n\nIf you want to connect to a remote Supabase instance you can set all of your variables in `.env` located in the root repository.\n\nIf you do not have these, you may have to run Supabase locally first before development. Read more on [Your Supabase Instance](https://supabase-modules-docs.vercel.app/getting-started/supabase).\n\n## Develop\n\nFor development, run the following command from the root repository:\n\n```bash\npnpm db:start \u0026\u0026 pnpm dev\n```\n\n- `supbase` CLI will start your Supabase Instance at the response ports\n- `docs` will be available in port 3001\n- `playground` will be available in port 3000\n\n\u003e Remember to run `pnpm db:stop` to save resources once you are done working with your local Supabase Instance.\n\nIf you intended to develop with a cloud hosted Supabase Instance you only need to run:\n\n```bash\npnpm dev:remote\n```\n\n## Build\n\nTo build, run the following command from the root repository:\n\n```bash\npnpm build\n```\n\n## Contributing\n\nExcited to hear that you are interested in contributing to this project! Please visit [Contributing](https://supabase-modules-docs.vercel.app/introduction/contributing.html)\n\n## Documentation\n\nTo learn more about this project, please visit [Supabase Modules Documentation](https://supabase-modules-docs.vercel.app/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebscopeio%2Fsupabase-modules","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebscopeio%2Fsupabase-modules","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebscopeio%2Fsupabase-modules/lists"}