https://github.com/emanuelefavero/nextjs-firebase-auth
A simple Next.js app that uses Firebase Authentication to sign in users
https://github.com/emanuelefavero/nextjs-firebase-auth
auth firebase firebase-auth next nextjs react-bootstrap
Last synced: 6 months ago
JSON representation
A simple Next.js app that uses Firebase Authentication to sign in users
- Host: GitHub
- URL: https://github.com/emanuelefavero/nextjs-firebase-auth
- Owner: emanuelefavero
- License: mit
- Created: 2023-01-31T03:12:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-01T03:10:07.000Z (over 2 years ago)
- Last Synced: 2025-02-04T16:50:28.782Z (8 months ago)
- Topics: auth, firebase, firebase-auth, next, nextjs, react-bootstrap
- Language: TypeScript
- Homepage: https://nextjs-firebase-auth-green.vercel.app
- Size: 82 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Next.js Firebase Auth
This is a simple Next.js app that uses Firebase Authentication to sign in users. It uses the Firebase Admin SDK to verify the ID token sent from the client.
## Live Demo
- [https://nextjs-firebase-auth-green.vercel.app/](https://nextjs-firebase-auth-green.vercel.app/)
#### Screenshot
## Getting Started
- Clone the repo and `cd` into it
- Create a Firebase project on the [Firebase console](https://console.firebase.google.com/)
- Replace the Firebase config in `firebase/config.ts` with your own. (You can find this in the Firebase console)
> Note: Remember to enable email/password sign-in in the Firebase console
- Install the dependencies:
```bash
npm install
```- Run the development server:
```bash
npm run dev
```- Open [http://localhost:3000](http://localhost:3000) with your browser to see the result
- Sign in with an email and password
## License
- [MIT](LICENSE.md)