mirror of
https://github.com/usebruno/bruno.git
synced 2025-01-11 00:18:46 +01:00
21 lines
319 B
Markdown
21 lines
319 B
Markdown
## development
|
|
```bash
|
|
# install deps
|
|
npm i
|
|
|
|
# run next app
|
|
npm run dev --workspace=packages/bruno-app
|
|
|
|
# run electron app
|
|
npm run dev --workspace=packages/bruno-electron
|
|
|
|
# build next app
|
|
npm run build --workspace=packages/bruno-app
|
|
```
|
|
|
|
# testing
|
|
```bash
|
|
# bruno-schema
|
|
npm test --workspace=packages/bruno-schema
|
|
|
|
``` |