mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 00:16:29 +02:00
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.
14 lines
293 B
Bash
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)
|