We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 803979e commit 07c8cd4Copy full SHA for 07c8cd4
catuaba.go
@@ -29,7 +29,7 @@ func main() {
29
app := &cli.App{
30
Name: "catuaba",
31
Usage: "Build full-stack Go web apps in minutes, not days",
32
- Version: "0.1.2",
+ Version: "0.1.3",
33
Commands: []*cli.Command{
34
{
35
Name: "mcp",
generator/templates/application/Makefile.tmpl
@@ -1,6 +1,8 @@
1
.PHONY: dev build test lint clean docker-up docker-down tidy help setup
2
3
APP_NAME={{.Name}}
4
+GOBIN=$(shell go env GOPATH)/bin
5
+export PATH := $(GOBIN):$(PATH)
6
7
## dev: Start development with hot reload (templ + tailwind + go)
8
dev:
0 commit comments