waveterm/README.md

29 lines
424 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
```sh
brew install go-task
2024-05-10 05:38:54 +02:00
```
On first checkout:
2024-05-10 05:38:54 +02:00
```sh
yarn
go mod tidy
2024-05-10 05:38:54 +02:00
```
Then, run the following command to start the app using the Vite dev server (this will enable Hot Module Reloading):
2024-05-10 05:38:54 +02:00
```sh
task electron:dev
2024-05-10 05:38:54 +02:00
```
To run the app without the dev server, run the following instead:
2024-05-10 05:38:54 +02:00
```sh
task electron:start
2024-05-10 05:38:54 +02:00
```