Contributing¶
Thank you for your interest in contributing to Blink! This document provides guidelines and instructions for contributing to the project.
Code of Conduct¶
Please be respectful and considerate of others when contributing to this project. We expect all contributors to follow our Code of Conduct.
Getting Started¶
- Fork the repository on GitHub
- Clone your fork to your local machine
- Create a new branch for your changes
- Make your changes
- Push your changes to your fork
- Submit a pull request
Development Environment¶
To set up your development environment:
# Clone the repository
git clone https://github.com/TFMV/blink.git
# Navigate to the repository
cd blink
# Install dependencies
go mod download
# Build the binary
make build
Project Structure¶
The project is organized as follows:
cmd/blink/
: Contains the CLI applicationcmd/
: Contains the Cobra command definitionsmain.go
: Entry point for the CLIpkg/blink/
: Contains the library codeblink.go
: Core functionalityfilter.go
: Event filteringserver.go
: SSE serverwebhook.go
: Webhook functionalitysub.go
: Directory scanningtime.go
: Time-related utilitiesexamples/
: Contains example applicationsdocs/
: Contains documentation
Testing¶
Before submitting a pull request, please run the tests:
# Run all tests
make test
# Run tests without integration tests
make test-short
# Run benchmarks
make benchmark
# Generate test coverage
make coverage
Coding Style¶
We follow the standard Go coding style. Please run gofmt
on your code before submitting a pull request:
Documentation¶
Please update the documentation when adding or changing features. The documentation is written in Markdown and is located in the docs/
directory.
Pull Request Process¶
- Ensure your code passes all tests
- Update the documentation if necessary
- Update the CHANGELOG.md file if necessary
- Submit a pull request with a clear description of the changes
Release Process¶
- Update the version number in
cmd/blink/cmd/version.go
- Update the CHANGELOG.md file
- Create a new tag with the version number
- Push the tag to GitHub
- Create a new release on GitHub
License¶
By contributing to this project, you agree that your contributions will be licensed under the project's license.