* Revert "Update main.go (#154)" This reverts commitbe4a281d0c
. * Revert "[MM-33506] Use embed package to include plugin manifest (#145)" This reverts commitca9ee3c17c
. * Revert "Don't generate manifest.ts (#127)" This reverts commit18d30b50bc
. * install-go-tools target, adopt gotestsum * bring back make apply + automatic versioning * Update build/manifest/main.go Co-authored-by: Michael Kochell <6913320+mickmister@users.noreply.github.com> * suppress git describe error when no tags match * make version/release notes opt-in * fix whitespace in Makefile * document version management options --------- Co-authored-by: Michael Kochell <6913320+mickmister@users.noreply.github.com>
26 lines
999 B
JSON
26 lines
999 B
JSON
{
|
|
"id": "com.mattermost.plugin-starter-template",
|
|
"name": "Plugin Starter Template",
|
|
"description": "This plugin serves as a starting point for writing a Mattermost plugin.",
|
|
"homepage_url": "https://github.com/mattermost/mattermost-plugin-starter-template",
|
|
"support_url": "https://github.com/mattermost/mattermost-plugin-starter-template/issues",
|
|
"icon_path": "assets/starter-template-icon.svg",
|
|
"min_server_version": "6.2.1",
|
|
"server": {
|
|
"executables": {
|
|
"linux-amd64": "server/dist/plugin-linux-amd64",
|
|
"linux-arm64": "server/dist/plugin-linux-arm64",
|
|
"darwin-amd64": "server/dist/plugin-darwin-amd64",
|
|
"darwin-arm64": "server/dist/plugin-darwin-arm64",
|
|
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
|
|
}
|
|
},
|
|
"webapp": {
|
|
"bundle_path": "webapp/dist/main.js"
|
|
},
|
|
"settings_schema": {
|
|
"header": "",
|
|
"footer": "",
|
|
"settings": []
|
|
}
|
|
}
|