A modern cross-platform mobile application built with Rsbuild, TailwindCSS, Capacitor.js, and shadcn/ui components.
nvm install v22.13.1
nvm use v22.13.1
nvm list available
nvm install v22.13.1
nvm use 22.13.1
nvm alias default 22.13.1
nvm use
nvm alias default 18.16.1
nvm use
```Install the plugins below
Install dependencies:
nvm use --lts
npm install
Install platform-specific dependencies:
npx cap add ios
npx cap add android
Start the development server:
npm run dev
Build for production:
npm run build
Sync with native platforms:
npx cap sync
Build, sync, and run on iOS simulator:
npm run build && npx cap sync && npx cap run ios
Run with live reload:
npx cap run ios --target=
npx cap run ios --target=A22FDE86-3ADA-4F34-9D93-6FB5D859F653 --host=localhost --port=3000 -l
Run on Android emulator with live reload:
npx cap run ios --target=
npx cap run android --target=Pixel_9_Pro_XL_API_36 --host=10.1.14.212 --port=3000 -l
├── src/ # Source code
├── ios/ # iOS platform-specific code
├── android/ # Android platform-specific code
├── components/ # shadcn/ui components
├── components.json # shadcn/ui configuration
└── rsbuild.config.mjs # Rsbuild configuration
shadcnui-boilerplate by TinsFox.