Go to file
Joram Wilander 95f70fdeaf
Merge pull request #2 from mattermost/mm-11026
MM-11026 Migrate to use plugin v2 system coming in Mattermost 5.2
2018-07-15 21:32:57 -04:00
meme [*] Make it warp unicode messages coorect. 2018-04-17 17:54:22 +07:00
memelibrary initial commit 2017-12-21 05:50:48 -06:00
.gitignore initial commit 2017-12-21 05:50:48 -06:00
.travis.yml update travis api key 2017-12-21 15:45:10 -06:00
LICENSE Create LICENSE 2017-12-21 16:05:36 -06:00
Makefile add screenshot, travis.yml, bump version to 0.1 2017-12-21 15:25:22 -06:00
README.md Update README.md 2017-12-21 16:04:00 -06:00
glide.lock Update glide 2018-07-15 21:26:41 -04:00
glide.yaml Update glide 2018-07-15 21:26:41 -04:00
plugin.go Migrate to use plugin v2 system coming in Mattermost 5.2 2018-07-10 09:08:33 -04:00
plugin.yaml Migrate to use plugin v2 system coming in Mattermost 5.2 2018-07-10 09:08:33 -04:00
screenshot.png add screenshot, travis.yml, bump version to 0.1 2017-12-21 15:25:22 -06:00

README.md

mattermost-plugin-memes Build Status

This plugin will create a slash command that you can use to create memes!

/meme memes. memes everywhere

Installation

Go to the GitHub releases tab and download the latest release for your server architecture. You can upload this file in the Mattermost system console to install the plugin.

Developing

Run make vendor to install third-party dependencies and make memelibrary/assets.go to bundle up the meme assets (images, fonts, etc.). From there, you can develop like any other Go project: Hack away and use go test, go build, etc.

For convenience, you can run the plugin from your terminal to preview an image for a given input. For example, on macOS, you can run the following to generate the above meme and open it in Preview:

go run plugin.go -out demo.jpg 'memes. memes everywhere' && open demo.jpg

This is especially useful when adding or modifying memes as you can quickly modify assets, make memelibrary/assets.go, and preview the result using the above command. (See the files in memelibrary/assets to get started with that.)

If you want to create a fully bundled plugin that will run on a local server, you can use make mattermost-memes-plugin.tar.gz.

Releasing

To make a release, update the version number in plugin.yaml, and create a release via the GitHub interface. Travis will upload the distributables for you.