- Ініціалізація Next.js 15.4.11 + Payload CMS 3.x (PostgreSQL/Drizzle) - Docker Compose: PostgreSQL, Twenty CRM, Umami, Metabase - Tailwind CSS 4 з brand кольорами (green/orange/blue/purple/yellow) - Шрифти: Montserrat Alternates + Rubik через next/font/google - shadcn/ui компоненти: Button, Input, Label, Textarea, Badge, Card, Separator - Payload колекції: Users (ролі SUPER_ADMIN/ADMIN/EDITOR), Media (upload з sizes) - Access control: isAdmin, isEditor, isSuperAdmin, isAdminOrPublished - .env.example з усіма змінними середовища - Dockerfile (multi-stage, output: standalone) - Білд успішно проходить перевірку TypeScript Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
430 B
JSON
21 lines
430 B
JSON
{
|
|
"$schema": "https://ui.shadcn.com/schema.json",
|
|
"style": "default",
|
|
"rsc": true,
|
|
"tsx": true,
|
|
"tailwind": {
|
|
"config": "",
|
|
"css": "src/app/globals.css",
|
|
"baseColor": "neutral",
|
|
"cssVariables": true,
|
|
"prefix": ""
|
|
},
|
|
"aliases": {
|
|
"components": "@/components",
|
|
"utils": "@/lib/utils",
|
|
"ui": "@/components/ui",
|
|
"lib": "@/lib",
|
|
"hooks": "@/hooks"
|
|
},
|
|
"iconLibrary": "lucide"
|
|
}
|