{"id":13423765,"url":"https://github.com/hrushikedar33/next-fire-auth","last_synced_at":"2025-03-15T17:32:16.290Z","repository":{"id":215182901,"uuid":"579948438","full_name":"hrushikedar33/next-fire-auth","owner":"hrushikedar33","description":"Auth template ","archived":false,"fork":false,"pushed_at":"2023-01-04T19:18:55.000Z","size":94,"stargazers_count":6,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-26T23:12:34.384Z","etag":null,"topics":["firebase-auth","nextjs","reactjs","tailwind","typescipt","vercel"],"latest_commit_sha":null,"homepage":"https://next-fire-auth.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/hrushikedar33.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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}},"created_at":"2022-12-19T10:45:55.000Z","updated_at":"2024-06-13T21:43:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"07e0ca1e-d53a-46ab-b19a-61801451a3da","html_url":"https://github.com/hrushikedar33/next-fire-auth","commit_stats":null,"previous_names":["hrushikedar33/next-fire-auth"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrushikedar33%2Fnext-fire-auth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrushikedar33%2Fnext-fire-auth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrushikedar33%2Fnext-fire-auth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hrushikedar33%2Fnext-fire-auth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hrushikedar33","download_url":"https://codeload.github.com/hrushikedar33/next-fire-auth/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243767243,"owners_count":20344895,"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","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":["firebase-auth","nextjs","reactjs","tailwind","typescipt","vercel"],"created_at":"2024-07-31T00:00:41.964Z","updated_at":"2025-03-15T17:32:15.334Z","avatar_url":"https://github.com/hrushikedar33.png","language":"TypeScript","funding_links":[],"categories":["Boilerplates"],"sub_categories":[],"readme":"# Next-Fire-Auth 🔥\n\n## **Demo Here:** [Next-Fire-Auth](https://next-fire-auth.vercel.app/)\n\nTry Logging with the following\n\n```\nEmail Address: user@gmail.com\nPassword: test@12345\n```\n\n## Steps\n\n- [Why Next Fire Auth](#why-next-fire-auth)\n- [Technologies](#technologies-used)\n- [Features](#features)\n- [Quick Start](#quick-start)\n- [Documentation](#documentation)\n- [Recommended IDE Setup](#recommended-ide-setup)\n\n### Why Next Fire Auth\n\nStarting a new project that involves using Firebase for authentication can be time-consuming and tedious, as it requires setting up various features and functionality such as **routes, protected routes, login and register components, styling, and form validation**. These tasks can be particularly frustrating if they need to be set up from scratch **every time** a new project is started.\n\nHere is **Next-Fire-Auth** template for you.\n\nI have used latest NextJs version 13, with latest routing method and focus on Server Components. You will find all pages in `/app/` directory\n\n### Technologies used\n\n1. [Next v13](https://beta.nextjs.org/docs/)\n1. [Firebase v9](https://firebase.google.com/docs/web/modular-upgrade)\n1. [Tailwind CSS v3](https://tailwindcss.com/)\n1. [Reactjs v18](https://reactjs.org/docs/getting-started.html)\n1. [Typescipt](https://www.typescriptlang.org/)\n1. [React-Firebase-Hooks](https://github.com/csfrequency/react-firebase-hooks)\n\n### Features\n\n1. Email Password Authetication \u0026 Google Authetication\n1. Forgot Password Feature\n1. Login \u0026 SignUp forms validations\n1. NextJs 13 routing\n\n### Quick Start\n\n```bash\ngit clone https://github.com/hrushikedar33/next-fire-auth my-project\nyarn\n```\n\n\u003e Make sure you replace **my-project** with your own project name\n\n\u003cdetails\u003e\u003csummary\u003eIf you don't have yarn installed\u003c/summary\u003e\n\u003cp\u003e\n\n```bash\nnpm i\n```\n\n\u003e Remove **yarn.lock** as you will already have **package.lock**\n\n\u003c/p\u003e\n\u003c/details\u003e\n\n1. Go to Firebase console. Add Project. In project overview, click on the web icon and register the app. You will see `firebaseConfig object`, We will require its details further. Click on Authetication, then on set up sign-in method. Enable `Email/password authentication` \u0026 `google authentication`.\n1. Create a `.env.local` file in your project's root. Example of `.env.local` file is given below. Make sure you replace `YOUR_FIREBASE_CONSOLE_DETAILS` with your `firebaseConfig object` details.\n\n```\nNEXT_PUBLIC_API_KEY=YOUR_FIREBASE_CONSOLE_DETAILS\nNEXT_PUBLIC_AUTH_DOMAIN=YOUR_FIREBASE_CONSOLE_DETAILS\nNEXT_PUBLIC_PROJECT_ID=YOUR_FIREBASE_CONSOLE_DETAILS\nNEXT_PUBLIC_STORAGE_BUCKET=YOUR_FIREBASE_CONSOLE_DETAILS\nNEXT_PUBLIC_MESSAGING_SENDER_ID=YOUR_FIREBASE_CONSOLE_DETAILS\nNEXT_PUBLIC_APP_ID=YOUR_FIREBASE_CONSOLE_DETAILS\n```\n\n3. That's It ! Finally run the application\n\n```\nyarn dev # OR npm run dev\n```\n\n### Documentation\n\n#### Pages\n\nLocation: `/app/`\n\n- Home Page\n- Login Page\n- Sign Up Page\n- Forgot Password Page\n- Profile Page - `Auth Required`\n\n#### Helpers\n\n- Global CSS will be found `/style/globals.css`\n- Firebase configuration will be found in `/config/firebase.ts`\n- `Loading` in `/components/Loading.tsx` - Loading spinner\n\n### Recommended IDE Setup\n\n- [VSCode](https://code.visualstudio.com/) + [React Snippets](https://marketplace.visualstudio.com/items?itemName=dsznajder.es7-react-js-snippets)\n- [Tailwind CSS IntelliSense](https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-tailwindcss)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhrushikedar33%2Fnext-fire-auth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhrushikedar33%2Fnext-fire-auth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhrushikedar33%2Fnext-fire-auth/lists"}