git clone https://github.com/wzdzzz/osmanthus-next.js
cd osmanthus
yarn install
cp .env.example .env.local
yarn run generate
yarn run dev
Your project should now be running at http://localhost:3000.
This template uses Next-Auth for authentication. Configure your authentication provider in src/config/auth.config.ts.
Next-Intl is used for multi-language support. Add your language files in the src/config/dictionaries directory.
Customize your themes using Next-Themes in src/app/globals.css.
Global state is managed by Zustand. Define your store in the src/store directory.
Database integration is done using Prisma. Configure your database connection in prisma/schema.prisma.