[MM-14189] Update references to "mattermost-plugin-sample" to be… (#47)
Repo name changed
This commit is contained in:
parent
5763d2f9f3
commit
1a5f1bc2d2
6 changed files with 8 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
# Sample Plugin 
|
||||
# Plugin Starter Template 
|
||||
|
||||
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
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module github.com/mattermost/mattermost-plugin-sample
|
||||
module github.com/mattermost/mattermost-plugin-starter-template
|
||||
|
||||
go 1.12
|
||||
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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!
|
||||
|
|
|
@ -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",
|
||||
}
|
||||
|
|
|
@ -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';
|
||||
|
|
Reference in a new issue