garasingulik / next-auth-antd-typescript-template

Homebrew Template for Common Web UI Project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Next.js + NextAuth.js + AntD + TypeScript Template

This template is a homebrew template that I mainly use to bootstrap a new frontend project. It was based on official Next.js with Ant Design Pro Layout Less template with additional things that I mostly use in my projects.

The template has been preconfigured with basic NextAuth.js credentials authentication using sqlite backend (not recommended for production), and ofcourse you can change this database backend with any database of your preference that is supported by NextAuth.js TypeORM Adapter.

Running in Development

Clone this repository and run:

npm install

Before we run the project, create one .env.local file in the root of the project and configure this value:

# first user
FIRST_USER_USERNAME=<first user that will automatically created>
FIRST_USER_PASSWORD=<first user password>

# auth
NEXTAUTH_URL=http://localhost:3000
DATABASE_URL=<database connection string>
SESSION_SECRET=<generate secret for session>
JWT_SECRET=<generate secret for JWT>

# auth email
EMAIL_SERVER=<node mailer email connection string>
EMAIL_FROM=<email sender for verification>

To run this project in the development:

npm run dev

The development server will run at http://localhost:3000

About

Homebrew Template for Common Web UI Project


Languages

Language:TypeScript 84.8%Language:JavaScript 7.0%Language:Dockerfile 4.4%Language:Less 3.8%