waveterm/README.md

29 lines
355 B
Markdown
Raw Normal View History

2024-05-10 05:38:54 +02:00
# The Next Wave
Prereqs:
2024-05-10 05:38:54 +02:00
You'll need to install "task" (which we're using as a build/run system):
2024-05-10 05:38:54 +02:00
```
brew install go-task
2024-05-10 05:38:54 +02:00
```
On first checkout:
2024-05-10 05:38:54 +02:00
```
yarn
go mod tidy
2024-05-10 05:38:54 +02:00
```
To run the app, you'll first need to run the webpack watcher:
2024-05-10 05:38:54 +02:00
```
task webpack
2024-05-10 05:38:54 +02:00
```
Then, in a separate terminal, this command will run the electron app:
2024-05-10 05:38:54 +02:00
```
task electron
2024-05-10 05:38:54 +02:00
```