20 lines
218 B
Markdown
20 lines
218 B
Markdown
|
|
build dsp:
|
|
```sh
|
|
cd dsp
|
|
faust2jackconsole -osc mixer.dsp
|
|
```
|
|
|
|
build frontend:
|
|
```sh
|
|
cd frontend
|
|
yarn
|
|
yarn build
|
|
```
|
|
|
|
build and run backend & serve frontend:
|
|
```sh
|
|
cargo run
|
|
```
|
|
|
|
open http://localhost:8080/index.html
|