- Enhanced `README.md` with a quick start guide and detailed project structure. - Updated `SETUP_GUIDE.md` by removing it as it was redundant. - Improved `local-development.md` and `development.md` with clearer instructions for database migrations. - Added bilingual comments in various scripts for better understanding and usability. - Updated `.gitignore` to include specific build scripts while ignoring others. - Enhanced `scripts` for database management, including backup and seeding functionalities with bilingual support.
12 lines
217 B
Bash
Executable File
12 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "🔨 Building all services and apps..."
|
|
|
|
# EN: Build all packages using pnpm workspace
|
|
# VI: Build tất cả các package sử dụng pnpm workspace
|
|
pnpm build
|
|
|
|
echo "✅ Build completed!"
|