Skip to content

Instantly share code, notes, and snippets.

View alex-sainer's full-sized avatar

Alex Sainer alex-sainer

View GitHub Profile
@alex-sainer
alex-sainer / mailhog-setup-script
Last active March 14, 2019 16:51 — forked from v-jacob/Mailhog Bash Script (systemd)
Mailhog setup with systemd
#!/usr/bin/env bash
echo ">>> Installing Mailhog"
# Download binary from github
wget --quiet -O ~/mailhog https://github.com/mailhog/MailHog/releases/download/v1.0.0/MailHog_linux_amd64
# Make it executable
chmod +x ~/mailhog
cp ~/mailhog /usr/local/bin/mailhog