Open
Description
I need some advice for the implementation/deployment of a revel app. The app basically serves some static files applying some logic. One of the requirements of the project is that all should be server from a single binary, this means that I should include all assets inside that binary. (no src nor media folder is allowed). This also means that the config should be embedded in the binary too.
I've been investigating for a while and I haven't found a way to do it with the legacy revel framework. I've seen some solutions like go-bindata[0] but I don't really found a way to do it without modifying the revel source code.
Have anyone worked in an environment like that?