Merge pull request #130 from evandandrea/snapcraft

Add a snapcraft.yaml file for building snaps (https://snapcraft.io)
This commit is contained in:
Tyndyll 2019-10-07 14:33:32 +01:00 committed by GitHub
commit d7a4abc030
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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