Skip to content

vojtech-cerveny/nextjs-auth-template

Repository files navigation

Boiler plate for nextjs + prisma + nextauth

This is basic boilerplate for NextJS (Typescript) + Prisma + Auth.js (GoogleAuth).

Contains

  • Docker container for Postgresql
  • JS Frameworks
    • NextJS 14
    • Prisma
    • NextAuth
    • shadcn/ui
    • Tailwind

Setup

  1. Setup GoogleAuth - follow official documentation
  2. mv .env.example .env - and fill environment variables
  3. Run docker image with database
    • docker compose up -d
  4. Run script to initialize tables for NextAuth
    • npx prisma generate && npx prisma migrate dev
  5. Basic npm stuff
    • Install dependencies - npm install
    • Run server - npm run dev

Frameworks + Tools

Prisma

Prisma provides the best experience for your team to work and interact with databases. Scheme is defined in prisma/schema.prisma. It defines database in "pseudo code", which is easy to read and write and it provides types to Typescript.

Commands

  1. npx prisma generate - link
  2. npx prisma dev - migrate changes from schema to database

Auth.js

It take cares about session :) Thats all - you can add providers (Github, MS), so far it is setup with Google

Check ./auth.ts for more info or official documentation

Note: After some time of development, it starts failing due too many clients to DB. I tried to fix it by adding prisma into singleton, but it didn't help. If you know how to resolve it, please fill the PR for it.

shadcn/ui

For quick and keep some styling, this template use shadcn/ui components.

So far, this template has these components: Avatar, Button, DropdownMenu.

For new components, check components on official page and follow installation instructions.

Tailwind

Template use Tailwind, so please check it to.

Tip: If you need to figure out some layouts or something, check Flowbite

Prettier + Husky

  1. I use it everywhere and it force format style in project.

Project structure

Check NextJS app structure

TLDR:

  • app/layout.tsx is wrapper around all pages in folder
  • app/page.tsx is like index for folder.
    • /app/contact/page.tsx is localhost:3000/contact
    • /app/contact/[id]/page.tsx is localhost:3000/contact/someId
    • /app/contact/layout/ is used for all ^^ these pages
  • components - folder for UI components (shadcn/ui + tailwind)
  • app/api is special folder for API responses

Check how you can handle notFound, error and others pages - it is super simple. Hint

import { notFound } from "next/navigation";

export default async function RemoteMdxPage({ params }: { params: { id: string } }) {
  // pseudoCode - if it is not found, display notFound page
  if(isInDatabase(params.id)){
    return notFound();
  }
  return (
    <SomeSuperComponent></SomeSuperComponent>
  );
}
// app/not-found.tsx
export default function NotFound() {
  return (
    <main className="relative mt-16 flex w-full flex-col items-center justify-center">
      <h1>404</h1>
      <div>Nenalezeno</div>
    </main>
  );
}

About

Basic template for nextjs14 + auth.js + prisma

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages