mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
29 lines
355 B
Markdown
29 lines
355 B
Markdown
# The Next Wave
|
|
|
|
Prereqs:
|
|
|
|
You'll need to install "task" (which we're using as a build/run system):
|
|
|
|
```
|
|
brew install go-task
|
|
```
|
|
|
|
On first checkout:
|
|
|
|
```
|
|
yarn
|
|
go mod tidy
|
|
```
|
|
|
|
To run the app, you'll first need to run the webpack watcher:
|
|
|
|
```
|
|
task webpack
|
|
```
|
|
|
|
Then, in a separate terminal, this command will run the electron app:
|
|
|
|
```
|
|
task electron
|
|
```
|