Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
1.4 KiB
Markdown
28 lines
1.4 KiB
Markdown
# Contributing to the Split GO SDK
|
|
|
|
Split SDK is an open source project and we welcome feedback and contribution. The information below describes how to build the project with your changes, run the tests, and send the Pull Request(PR).
|
|
|
|
## Development
|
|
|
|
### Development process
|
|
|
|
1. Fork the repository and create a topic branch from `development` branch. Please use a descriptive name for your branch.
|
|
2. While developing, use descriptive messages in your commits. Avoid short or meaningless sentences like "fix bug".
|
|
3. Make sure to add tests for both positive and negative cases.
|
|
4. <if applicable> Run the linter script of the project and fix any issues you find.
|
|
5. Run the build script and make sure it runs with no errors.
|
|
6. Run all tests and make sure there are no failures.
|
|
7. `git push` your changes to GitHub within your topic branch.
|
|
8. Open a Pull Request(PR) from your forked repo and into the `development` branch of the original repository.
|
|
9. When creating your PR, please fill out all the fields of the PR template, as applicable, for the project.
|
|
10. Check for conflicts once the pull request is created to make sure your PR can be merged cleanly into `development`.
|
|
11. Keep an eye out for any feedback or comments from Split's SDK team.
|
|
|
|
### Running tests
|
|
|
|
To run test you can execute the command `go test ./...` on the root folder.
|
|
|
|
# Contact
|
|
|
|
If you have any other questions or need to contact us directly in a private manner send us a note at sdks@split.io.
|