rowboat/build-electron.sh
nocxcloud-oss 4239f9f1ef strengthen repo verification and runtime coverage
Add clearer app docs plus targeted desktop, CLI, web, and worker tests so cross-surface regressions are caught earlier and the repo is easier to navigate.
2026-04-15 19:10:41 +08:00

14 lines
293 B
Bash

#!/bin/bash
set -e
# Prepare the frontend and local runtime embedded by the desktop shell.
# Build the RowboatX Next.js frontend.
(cd apps/rowboatx && \
npm install && \
npm run build)
# Build the local CLI/runtime service.
(cd apps/cli && \
npm install && \
npm run build)