Production-ready full-stack Next.js web application with App Router, Drizzle ORM, JWT auth, and Tailwind CSS.
{
"name": "@dcyfr/ai-web",
"version": "2.0.0",
"description": "Production-ready full-stack Next.js web application with App Router, Drizzle ORM, JWT auth, and Tailwind CSS.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest"
},
"dependencies": {
"@dcyfr/ai": "^1.0.0",
"@dcyfr/design-system": "*",
"next": "^15",
"react": "^19",
"react-dom": "^19"
}
}Clone the template
npx create-dcyfr-app my-app --template dcyfr-ai-webInstall dependencies
cd my-app && npm installConfigure environment
cp .env.example .env.localStart developing
npm run dev