mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 14:24:03 +00:00
Merge pull request #130 from evandandrea/snapcraft
Add a snapcraft.yaml file for building snaps (https://snapcraft.io)
This commit is contained in:
commit
d7a4abc030
1 changed files with 22 additions and 0 deletions
22
snapcraft.yaml
Normal file
22
snapcraft.yaml
Normal 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
|
Loading…
Reference in a new issue