Skip to content

NextJS - AuthJS & Postgres Starter Code: Launch and Deliver Your Product at Lightning Speed.

Notifications You must be signed in to change notification settings

renishb10/nextjs_authjs_postgres_starter

Repository files navigation

Next.js Auth.js Postgres Starter Code

Welcome to the Next.js Auth.js Postgres Starter Code repository! This project is designed to help developers kickstart their Next.js projects with a robust and modern tech stack, allowing them to focus on business logic and application development.

Home Page

Features

  • Next.js 14: Leverage the latest version of Next.js with advanced features and optimizations.
  • App Router: Simplified routing with the new App Router feature.
  • Postgres: A powerful and flexible relational database.
  • Prisma: A modern ORM to interact with your database.
  • Auth.js (Next.js V5 beta): Secure authentication with Email, Google, and GitHub providers.
  • Two-Factor Authentication: Users can opt for additional security from their settings page.
  • Resend: Integrated email service provider.
  • TailwindCSS: Utility-first CSS framework for rapid UI development.
  • ShadCn UI: Pre-built UI components with New York theme and dark mode support.
  • React Hook Form & Zod: Efficient form handling and validation.

Authentication Providers

Implemented authentication providers:

  • Email
  • Google
  • GitHub

Login Page Login

Settings Page Login

The code is modular, making it easy to add or remove other providers. For more information, visit Auth.js Providers.

Database Configuration

We use Postgres with Prisma ORM. You can opt for custom Postgres DB hosting or services like Supabase, Neon, etc. For more information, visit Prisma Quickstart.

The Prisma adapter for Auth.js is used. For more information, visit Prisma Adapter.

UI Configuration

TailwindCSS and ShadCn UI components are used, with ShadCn's New York theme and dark mode support. Forms utilize React Hook Form and Zod for validations.

Routing Configuration

By default, new pages are private. Configure routes in /src/routes.ts:

export const publicRoutes = ['/', '/about', '/contact', '/error', '/goodbye'];

export const authRoutes = [
  '/login',
  '/signup',
  '/auth/verify-email',
  '/auth/new-password',
  '/auth/reset-password',
];

Custom Hooks for Authentication

To get the auth session from the client side, use useCurrentUser and useCurrentRole custom hooks:

const user = useCurrentUser();
const role = useCurrentRole();

For server-side auth session, use currentUser and currentRole from @/lib/auth.

Local Setup Instructions

  1. Rename .env.example to .env and add/replace relevant values for required keys:

    AUTH_SECRET=
    DATABASE_URL=
    GITHUB_CLIENT_ID=
    GITHUB_CLIENT_SECRET=
    GOOGLE_CLIENT_ID=
    GOOGLE_CLIENT_SECRET=
    RESEND_API_KEY=
    NEXT_PUBLIC_APP_URL="http://localhost:3000"
    
  2. Install dependencies:

    npm install
  3. Apply schema changes to your database:

    npx prisma generate
    npx prisma migrate dev
  4. Run Prisma Studio:

    npx prisma studio
  5. Start the application:

    npm run dev
  6. To push schema changes directly to the production database:

    npx prisma db push
  7. Format schema code:

    npx prisma format

For more Prisma-related commands, check their official documentation.

Todo

  • Integrate 3rd Party Logging service
  • Integrate APM (Rollbar/Bugsnag/Sentry.io)
  • Dockerize
  • Add Date and String Utils
  • Import custom shadcn ui components
    • Data Table
    • Confirm Dialog
    • Custom Date Time Picker
    • etc

Developer

This starter code was developed by Renish B.

Happy coding!

About

NextJS - AuthJS & Postgres Starter Code: Launch and Deliver Your Product at Lightning Speed.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published