gromer
git clone https://git.pyrossh.dev/gromer
gromer is a framework and cli to build multipage web apps in golang using htmx and alpinejs.
_example/makefile
| 327e79a | 1 | setup: |
| cd1732b | 2 | go install github.com/mitranim/gow@latest |
| 74b3ac4 | 3 | go run github.com/playwright-community/playwright-go/cmd/playwright install --with-deps |
| 327e79a | 4 | |
| 11d9cf7 | 5 | dev: |
| 327e79a | 6 | gow run main.go |
| 327e79a | 7 | |
| 5fe2b50 | 8 | test: |
| 5fe2b50 | 9 | go test -v ./... |
| 5fe2b50 | 10 | |
| 327e79a | 11 | build: |
| 11d9cf7 | 12 | podman build -f ../_example/Containerfile -t example-app:develop ../ |
| f0edb41 | 13 | |
| 11d9cf7 | 14 | run: |
| 11d9cf7 | 15 | podman run -p 3000:3000 example-app:develop |