All checks were successful
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 1m24s
12 lines
311 B
Bash
Executable File
12 lines
311 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@latest
|
|
go install github.com/a-h/templ/cmd/templ@latest
|
|
go install github.com/vektra/mockery/v2@latest
|
|
|
|
templ generate --watch --proxy="http://localhost:8080" --cmd="go run ." &
|
|
npm run watch
|
|
|
|
read -n1 -s -r
|
|
kill "$(jobs -p)"
|