This commit is contained in:
2025-10-05 11:57:43 +07:00
parent 754e494e7f
commit 670228b76e
52 changed files with 39264 additions and 331 deletions

View File

@@ -7,12 +7,12 @@ services:
user: "${UID:-1000}:${GID:-1000}"
command: >
sh -c "
echo '📦 Installing dependencies...' &&
echo '...installing dependencies...' &&
npm install &&
echo '🎨 Initializing shadcn/ui...' &&
echo '...initiallizing shadcn/ui...' &&
npx shadcn@latest init -y -d &&
echo '📥 Adding components...' &&
npx shadcn@latest add -y alert-dialog dialog checkbox scroll-area button label input card badge tabs progress dropdown-menu tooltip switch &&
echo '...adding components...' &&
npx shadcn@latest add -y alert dialog checkbox scroll-area button label input card badge tabs progress dropdown-menu tooltip switch &&
echo '✅ Done! Check components/ui/ directory'
"