{"id":14968815,"url":"https://github.com/greeenboi/nextjs-supabase-template","last_synced_at":"2025-07-21T21:31:42.556Z","repository":{"id":254857911,"uuid":"847763149","full_name":"greeenboi/nextjs-supabase-template","owner":"greeenboi","description":"Template Repository that I use for my projects","archived":false,"fork":false,"pushed_at":"2024-08-31T06:53:27.000Z","size":89,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-07T15:52:47.029Z","etag":null,"topics":["eslint","husky","nextjs14","prettier","prettier-eslint","shadcn-ui","supabase","supabase-auth","supabase-ssr","tailwindcss","template","template-repository","transition-loader","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/greeenboi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-08-26T13:56:10.000Z","updated_at":"2025-01-15T09:25:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"4dee1d93-1d1c-463d-8792-46abd09bce39","html_url":"https://github.com/greeenboi/nextjs-supabase-template","commit_stats":{"total_commits":7,"total_committers":2,"mean_commits":3.5,"dds":0.2857142857142857,"last_synced_commit":"25a7d3e90bca0441c3d6d69ca5fb743b8eaaba7a"},"previous_names":["greeenboi/nextjs-supabase-template"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/greeenboi/nextjs-supabase-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greeenboi%2Fnextjs-supabase-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greeenboi%2Fnextjs-supabase-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greeenboi%2Fnextjs-supabase-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greeenboi%2Fnextjs-supabase-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/greeenboi","download_url":"https://codeload.github.com/greeenboi/nextjs-supabase-template/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greeenboi%2Fnextjs-supabase-template/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266382122,"owners_count":23920639,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-21T11:47:31.412Z","response_time":64,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"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":["eslint","husky","nextjs14","prettier","prettier-eslint","shadcn-ui","supabase","supabase-auth","supabase-ssr","tailwindcss","template","template-repository","transition-loader","typescript"],"created_at":"2024-09-24T13:40:36.858Z","updated_at":"2025-07-21T21:31:42.264Z","avatar_url":"https://github.com/greeenboi.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NextJs 14 + Supabase SWR Starter Template\n\nThis is a starter template for Next.js 14 and Supabase with SWR.\n\n## Getting Started\n\nFirst, get this project by installing it:\n\n    ```bash\n    npx degit greeenboi/nextjs-supabase-template \u003cAPP_NAME\u003e\n\n    ```\n\n## Environment Variables\n\nCreate a `.env.local` file in the root of the project and add the following environment variables:\n\n```text\nNEXT_PUBLIC_SUPABASE_URL=https://\u003cyour_supabase_url\u003e.supabase.co\nNEXT_PUBLIC_SUPABASE_ANON_KEY=\u003cyour_supabase_anon_key\u003e\n```\n\n## Running the Development Server\n\n```bash\nnpm run dev\n# or\npnpm run dev\n\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\n## Features\n\nThe repository includes the following features:\n\n-   Supabase authentication ( [SWR](https://supabase.com/docs/guides/auth/server-side/nextjs) )\n-   [Shadcn UI](https://supabase.com/docs/guides/auth/server-side/nextjs) for styling ( sonner has been setup too )\n-   [SWR](https://swr.vercel.app/) for data fetching\n-   [prettier](https://prettier.io/) for code formatting\n-   [eslint](https://eslint.org/) for code linting\n-   [husky](https://typicode.github.io/husky/#/) for pre-commit hooks ( goto #husky for more info )\n-   [react-transition-progress](https://github.com/vercel/react-transition-progress) for page transition loader\n\n## Husky\n\nHusky is a tool that can prevent bad `git commit`, `git push`, and more. It can be used to run scripts (like linting, tests, etc.) before committing or pushing code.\n\nThis repository uses Husky to run `eslint` and `prettier` before committing code. If there are any errors, Husky will prevent the commit.\n\nTo Use Husky:\n\n```bash\n    git add -A\n    git commit -m \"Your commit message\"\n```\n\nAnd Husky will run the `pre-commit` script before committing the code.\n\n\u003e To disable husky, remove the `lint-staged` field from the `package.json` file and delete the `.husky` folder.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n\u003e made with 💖 by [greeenboi](https://github.com/greeenboi)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgreeenboi%2Fnextjs-supabase-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgreeenboi%2Fnextjs-supabase-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgreeenboi%2Fnextjs-supabase-template/lists"}