Brian Voelker
Brian Voelker

Reputation: 859

Including template files in Go executable

I want to parse a folder of template HTML files and cache (or buffer) them on build for later use in a web project. Basically I am trying to make it so when I build my project I dont need to take the HTML files with me when I upload the executable file.

Upvotes: 3

Views: 1121

Answers (1)

Jeremy Wall
Jeremy Wall

Reputation: 25237

I think maybe you are talking about embedding the html files in your binary?

If so the best way to do this that I've seen so far has been camlistores fileembed: https://code.google.com/p/camlistore/source/browse/pkg/fileembed/fileembed.go

See here for directions on use: https://groups.google.com/d/msg/golang-nuts/LQMv7Zsmsi0/8Aax1XSekjAJ

That thread has addtional info on other packages for this as well.

Upvotes: 2

Related Questions