MailHog/docs/BUILD.md

30 lines
1 KiB
Markdown
Raw Permalink Normal View History

2014-12-21 08:02:28 +00:00
Building MailHog
================
2014-12-21 07:55:53 +00:00
MailHog is built using `make`, and using [this Makefile](../Makefile).
2014-12-21 07:55:53 +00:00
If you aren't making any code changes, you can install MailHog using
2016-07-07 21:18:30 +00:00
`go get github.com/mailhog/MailHog`, since [mailhog/MailHog-UI/assets/assets.go](https://github.com/mailhog/MailHog-UI/blob/master/assets/assets.go)
2014-12-21 07:55:53 +00:00
is already pre-compiled and committed to this repository.
### Why do I need a Makefile?
MailHog has HTML, CSS and Javascript assets which need to be converted
to a go source file using [go-bindata](https://github.com/jteeuwen/go-bindata).
This must happen before running `go build` or `go install` to avoid compilation
errors (e.g., `no buildable Go source files in MailHog-UI/assets`).
### go generate
The build should be updated to use `go generate` (added in Go 1.4) to
preprocess static assets into go source files.
However, this will break backwards compatibility with Go 1.2/1.3.
2014-12-21 07:57:22 +00:00
### Building a release
Releases are built using [gox](https://github.com/mitchellh/gox).
Run `make release` to cross-compile for all available platforms.