rowboat/build-electron.sh

12 lines
193 B
Bash
Raw Normal View History

2025-12-23 18:26:32 +05:30
#!/bin/bash
set -e
# build rowboatx next.js app
(cd apps/rowboatx && \
npm install && \
npm run build)
# build rowboat server
(cd apps/cli && \
npm install && \
npm run build)