[MM-14189] Update references to "mattermost-plugin-sample" to be… (#47)

Repo name changed
This commit is contained in:
Michael Kochell 2019-06-24 22:02:25 -04:00 committed by GitHub
parent 5763d2f9f3
commit 1a5f1bc2d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 8 deletions

View file

@ -1,4 +1,4 @@
# Sample Plugin ![CircleCI branch](https://img.shields.io/circleci/project/github/mattermost/mattermost-plugin-sample/master.svg)
# Plugin Starter Template ![CircleCI branch](https://img.shields.io/circleci/project/github/mattermost/mattermost-plugin-starter-template/master.svg)
This plugin serves as a starting point for writing a Mattermost plugin. Feel free to base your own plugin off this repository.
@ -9,7 +9,7 @@ Use GitHub's template feature to make a copy of this repository by clicking the
Alternatively shallow clone the repository to a directory outside of `$GOPATH` matching your plugin name:
```
git clone --depth 1 https://github.com/mattermost/mattermost-plugin-sample com.example.my-plugin
git clone --depth 1 https://github.com/mattermost/mattermost-plugin-starter-template com.example.my-plugin
```
Note that this project uses [Go modules](https://github.com/golang/go/wiki/Modules). Be sure to locate the project outside of `$GOPATH`, or allow the use of Go modules within your `$GOPATH` with an `export GO111MODULE=on`.

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/mattermost/mattermost-plugin-sample
module github.com/mattermost/mattermost-plugin-starter-template
go 1.12

View file

@ -1,6 +1,6 @@
{
"id": "com.mattermost.sample-plugin",
"name": "Sample Plugin",
"id": "com.mattermost.plugin-starter-template",
"name": "Plugin Starter Template",
"description": "This plugin serves as a starting point for writing a Mattermost plugin.",
"version": "0.1.0",
"min_server_version": "5.12.0",

View file

@ -1 +1 @@
Hello from the static files public folder for the com.mattermost.sample-plugin plugin!
Hello from the static files public folder for the com.mattermost.plugin-starter-template plugin!

View file

@ -4,6 +4,6 @@ var manifest = struct {
ID string
Version string
}{
ID: "com.mattermost.sample-plugin",
ID: "com.mattermost.plugin-starter-template",
Version: "0.1.0",
}

View file

@ -1,2 +1,2 @@
export const id = 'com.mattermost.sample-plugin';
export const id = 'com.mattermost.plugin-starter-template';
export const version = '0.1.0';