From 18b436aa4c5f329e96df5cc78b5f00f3fd2d89d2 Mon Sep 17 00:00:00 2001 From: Colton Shaw <46071821+coltoneshaw@users.noreply.github.com> Date: Thu, 27 Jan 2022 05:34:34 -0500 Subject: [PATCH] Added Enable upload to plugins (#162) --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f4256a4..f37d68d 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,14 @@ dist/com.example.my-plugin.tar.gz ## Development -To avoid having to manually install your plugin, build and deploy your plugin using one of the following options. +To avoid having to manually install your plugin, build and deploy your plugin using one of the following options. In order for the below options to work, you must first enable plugin uploads via your config.json or API and restart Mattermost. + +```json + "PluginSettings" : { + ... + "EnableUploads" : true + } +``` ### Deploying with Local Mode @@ -62,7 +69,7 @@ If your Mattermost server is running locally, you can enable [local mode](https: ... "EnableLocalMode": true, "LocalModeSocketLocation": "/var/tmp/mattermost_local.socket" - } + }, } ```