Open woorulez opened 6 years ago
Go Templates are great! And having a separate template file(ie. box/index.gohtml) with IDE support greatly improves UI coding experience.
box/index.gohtml
But in order to achieve single binary deploy, I used gobuffalo/packr which did the job perfectly.
gobuffalo/packr
After releasing v0.1.1 it got to me that go get won't work any more. At least not like it used to.
v0.1.1
go get
Is a separate template file for ease of coding worth having at the cost of
go get seems to work!
some how the binary found the template file in $GOPATH/src/...
$GOPATH/src/...
Go Templates are great! And having a separate template file(ie.
box/index.gohtml
) with IDE support greatly improves UI coding experience.But in order to achieve single binary deploy, I used
gobuffalo/packr
which did the job perfectly.After releasing
v0.1.1
it got to me thatgo get
won't work any more. At least not like it used to.Is a separate template file for ease of coding worth having at the cost of
go get
as a deployment method