statik icon indicating copy to clipboard operation
statik copied to clipboard

Embed files into a Go executable

Results 40 statik issues
Sort by recently updated
recently updated
newest added

This has been a very useful tool. But the introduction of `//go:embed` in Go 1.16 provides roughly the same functionality, but without requiring a go generate pre-compilation step. It would...

Hopefully this issue and PR helps those who want to transition from statik to go:embed. ## My motivation? 2 fold: 1. This [issue](https://github.com/rakyll/statik/issues/122) - In short, the `Walk` function in...

For some reason, the `Walk` function on a directory is ignoring files without an extension within that directory. I'm not sure if those files are omitted from the static phase...

I can compile the app (as usual) locally without issues. After switching to to an azure pipeline, i compile the up under `golang:1.15-buster` I do install statik using ``` cd...

Use of this flag can improve determinism of builds. In my employer's environment the use of git across linux/osx hosts can produce different results for the mode (particularity the 'group'...

Added power support for the travis.yml file with ppc64le. This is part of the Ubuntu distribution for ppc64le. This helps us simplify testing later when distributions are re-building and re-releasing....

The `generateSource` function in main package `statik.go` is not handling symlinks correctly in all situations: - on the one hand, symlinks to regular files work ok (-ish, see below) and...

First of all, the library is great, I already used for some of my projects and I love it! Is it possible to implement the `ReadAt` method in the `httpFile`...

Can we support writting on disk instead on memory? I trying to embed 1gb of content thats mean use 1gb of memory by default :(