You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Start the open source version
pnpm dev:oss
# Start daas
pnpm start:daas
Command Line Arguments
Common parameters include --port and --dest,For more details vue-cli
# In the root directory, start with a specified port (an additional `--` may be needed on Windows)
pnpm start:daas --port=8100
# Equivalent tocd apps/daas
pnpm start:test --port=8100
Set Registry
# Using nrm
npm i -g nrm
nrm use taobao
# Or set manually
pnpm set registry https://registry.npmmirror.com/
# Check the set source
pnpm get registry
Use git worktree to develop multiple branches simultaneously
For example, to check out the main branch into a specified directory:
git worktree add ../main main
# Develop in the main directory:cd ../main
pnpm i
pnpm dev:oss