Edit on GitHub

Mattermost Server workflow

If you haven’t set up your developer environment, please do so before continuing with this section.

Join the Developers community channel to ask questions from community members and the Mattermost core team.

Workflow 

Here’s a general workflow for a Mattermost developer working on the mattermost repository:

Making code changes 

  1. Review the repository structure to familiarize yourself with the project:

  2. On your fork, create a feature branch for your changes. Name it MM-$NUMBER_$DESCRIPTION where $NUMBER is the Jira ticket number you are working on and $DESCRIPTION is a short description of your changes. Example branch names are MM-18150_plugin-panic-log and MM-22037_uppercase-email.

  3. Make the code changes required to complete your ticket.

Running and writing tests 

  1. Ensure that unit tests are written or modified where appropriate. For the server repository in general, Mattermost follows the opinionated way of testing in Go. You can learn more about this process in DigitalOcean's How To Write Unit Tests in Go tutorial. Test files must always end with _test.go, and should be located in the same folder where the code they are checking lives. For example, check out download.go and download_test.go, which are both located in the app folder. Please also use testify for new tests.

  2. If you made changes to the store, run make store-mocks and make store-layers to update test mocks and timing layer.

  3. To test your changes, run make run-server from the root directory of the server repository. This will start up the server at http://localhost:8065. To get changes to the server it must be restarted with make restart-server. If you want to test with the web app, you may also run make run which will start the server and a watcher for changes to the web app.

  4. Once everything works to meet the ticket requirements, stop Mattermost by running make stop in the server repository, then run make check-style to check your syntax.

  5. Run the tests using one or more of the following options:

    • Run make test to run all the tests in the project. This may take a long time and provides very little feedback while it’s running.
    • Run individual tests by name executing go test -run "TestName" ./<directory>.
    • Run all the tests in a package where changes were made executing go test app.
    • Create a draft PR with your changes and let our CI servers run the tests for you.
  6. Running every single unit test takes a lot of time while making changes, so you can run a subset of the server-side unit tests by using the following:

    go test -v -run='<test name or regex>' ./<package containing test>
    

    For example, if you want to run TestUpdatePost in app/post_test.go, you would execute the following:

    go test -v -run='TestUpdatePost' ./app
    
  7. If you added or changed any localization strings you will need to run make i18n-extract to generate the new/updated strings.

Testing email notifications 

  1. When Docker starts, the SMTP server is available on port 2500. A username and password are not required. You can access the Inbucket webmail on port 9000. For additional information on configuring an SMTP email server, including troubleshooting steps, see the SMTP email setup page in the Mattermost user documentation.

Testing with GitLab Omnibus 

  1. To test a locally compiled version of Mattermost with GitLab Omnibus, replace the following GitLab files:
    • The compiled mattermost binary in /opt/gitlab/embedded/bin/mattermost.
    • The assets (templates, i18n, fonts, webapp) in /opt/gitlab/embedded/service/mattermost.

Creating a pull request (PR) 

  1. Commit your changes, push your branch, and create a pull request.
  2. Once a PR is submitted it’s best practice to avoid rebasing on the base branch or force-pushing. Jesse, a developer at Mattermost, mentions this in his blog article Submitting Great PRs. When the PR is merged, all the PR’s commits are automatically squashed into one commit, so you don’t need to worry about having multiple commits on the PR.
  3. That’s it! Rejoice that you’ve helped make Mattermost better.

Useful Server makefile commands 

Some useful make commands include:

  • make run runs the server, creates a symlink for your mattermost-webapp folder, and starts a watcher for the web app.
  • make stop stops the server and the web app watcher.
  • make run-server runs only the server and not the client.
  • make debug-server will run the server in the delve debugger.
  • make stop-server stops only the server.
  • make update-docker stops and updates your Docker images. This is needed if any changes are made to docker-compose.yaml.
  • make clean-docker stops and removes your Docker images and is a good way to wipe your database.
  • make clean cleans your local environment of temporary files.
  • make config-reset resets the config/config.json file to the default.
  • make nuke wipes your local environment back to a completely fresh start.
  • make package creates packages for distributing your builds and puts them in the ./dist directory. You will first need to run make build and make build-client.

If you would like to run the development environment without Docker you can set the MM_NO_DOCKER environment variable. If you do this, you will need to set up your own database and any of the other services needed to run Mattermost.

Useful Mattermost and mmctl commands 

During development you may want to reset the database and generate random data for testing your changes. For this purpose, Mattermost has the following commands in the Mattermost CLI:

  1. First, install the server with go install ./cmd/mattermost in the server repository.

  2. You can reset your database to the initial state using:

    mattermost db reset
    
  3. The following commands need to be run via the mmctl tool.

    • You can generate random data to populate the Mattermost database using:

      mmctl sampledata
      
    • Create an account using the following command:

      mmctl user create --email user@example.com --username test1 --password mypassword
      
    • Optionally, you can assign that account System Admin rights with the following command:

      mmctl user create --email user@example.com --username test1 --password mypassword --system_admin
      

Customize your workflow 

Makefile variables 

You can customize variables of the Makefile by creating a config.override.mk file or setting environment variables. To get started, you can copy the config.mk file to config.override.mk and change the values in your newly copied file.

Docker-compose configurations 

If you create a docker-compose.override.yaml file at the root of the project, it will be automatically loaded by all the Makefile tasks using docker-compose, allowing you to define your own services or change the configuration of the ones Mattermost provides.

Did you find what you were looking for?

Thank you! We appreciate your feedback.
ร—

Tell us more

Your feedback helps us improve the Mattermost developer documentation.

Have a feature request? Share it here.

Having issues? Join our Community server.