mattermost-plugin-alertmanager
AlertManager Bot for Mattermost
File Explorer
Download Latest Version (.zip)- auto-merge-deps.yml
- build.yml
- golangci-lint.yml
- release.yml
- test.yml
- dependabot.yml
- .gitkeep
- alertmanager-1.png
- alertmanager-2.png
- alertmanager-3.png
- alertmanager-logo.png
- alertmanager-logo.svg
- .gitignore
- main.go
- main.go
- .gitignore
- go.mod
- go.sum
- legacy.mk
- setup.mk
- config.yml
- docker-compose.yaml
- sample.sh
- alerts.go
- retry.go
- silences.go
- silences_test.go
- status.go
- .gitignore
- action_context.go
- actions.go
- colors.go
- commands.go
- configuration.go
- main.go
- manifest.go
- plugin.go
- webhook.go
- AMAttribute.jsx
- CustomAttributeSettings.jsx
- confirmation_modal.tsx
- main.css
- index.jsx
- manifest.js
- .eslintrc.json
- .gitignore
- .npmrc
- package-lock.json
- package.json
- webpack.config.js
- .gitignore
- .golangci.yml
- .goreleaser.yml
- go.mod
- go.sum
- LICENSE
- Makefile
- plugin.go
- plugin.json
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/cpanato/mattermost-plugin-alertmanager
Downloads the entire project code from GitHub to your computer.
cd mattermost-plugin-alertmanager
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose -f hack/docker-compose.yaml up -d --build
Runs the command against the services defined in the compose file.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Node.js
EasyPrerequisites
cd webapp
This project's files live in a subfolder, so move into it first.
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
4. Go
MediumPrerequisites
cd build
This project's files live in a subfolder, so move into it first.
go build ./...
Compiles the Go program into an executable.
go run .
Runs the Go program directly without a separate build step.
If the build finishes without errors, it worked. If you used go run ., check the terminal output.
5. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
