2024-05-10 05:38:54 +02:00
|
|
|
# The Next Wave
|
|
|
|
|
2024-06-12 19:46:22 +02:00
|
|
|
Prereqs:
|
2024-05-10 05:38:54 +02:00
|
|
|
|
2024-06-12 19:46:22 +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
|
|
|
|
|
|
|
```
|
2024-06-12 19:46:22 +02:00
|
|
|
brew install go-task
|
2024-05-10 05:38:54 +02:00
|
|
|
```
|
|
|
|
|
2024-06-12 19:46:22 +02:00
|
|
|
On first checkout:
|
2024-05-10 05:38:54 +02:00
|
|
|
|
|
|
|
```
|
2024-06-12 19:46:22 +02:00
|
|
|
yarn
|
|
|
|
go mod tidy
|
2024-05-10 05:38:54 +02:00
|
|
|
```
|
|
|
|
|
2024-06-12 19:46:22 +02:00
|
|
|
To run the app, you'll first need to run the webpack watcher:
|
2024-05-10 05:38:54 +02:00
|
|
|
|
|
|
|
```
|
2024-06-12 19:46:22 +02:00
|
|
|
task webpack
|
2024-05-10 05:38:54 +02:00
|
|
|
```
|
|
|
|
|
2024-06-12 19:46:22 +02:00
|
|
|
Then, in a separate terminal, this command will run the electron app:
|
2024-05-10 05:38:54 +02:00
|
|
|
|
|
|
|
```
|
2024-06-12 19:46:22 +02:00
|
|
|
task electron
|
2024-05-10 05:38:54 +02:00
|
|
|
```
|