Add a snapcraft.yaml file for building snaps (https://snapcraft.io) of MailHog

This commit is contained in:
Evan Dandrea 2016-12-12 11:21:56 -06:00
parent 4946ba61bf
commit a708f5dcea

22
snapcraft.yaml Normal file
View file

@ -0,0 +1,22 @@
name: mailhog
summary: Web and API based SMTP testing
description: |
MailHog is an email testing tool for developers:
* Configure your application to use MailHog for SMTP delivery
* View messages in the web UI, or retrieve them with the JSON API
* Optionally release messages to real SMTP servers for delivery
version: "master"
confinement: strict
grade: stable
apps:
mailhog:
command: MailHog
plugs: [network-bind]
daemon: simple
parts:
mailhog:
plugin: go
go-packages:
- github.com/mailhog/MailHog
build-packages:
- git