We'd love to accept your contributions to this project! There are just a few guidelines you need to follow.
Bug reports should be opened up as issues on the go-vela/community repository!
Feature Requests should be opened up as issues on the go-vela/community repository!
NOTE: We recommend you start by opening a new issue describing the bug or feature you're intending to fix. Even if you think it's relatively minor, it's helpful to know what people are working on.
We are always open to new PRs! You can follow the below guide for learning how you can contribute to the project!
- Review the commit guide we follow - ensure your commits follow our standards
- Docker - building block for local development
- Docker Compose - start up local development
- Golang - for source code and dependency management
- Make - start up local development
-
Fork this repository
-
Clone this repository to your workstation:
# Clone the project
git clone [email protected]:go-vela/vela-makisu.git $HOME/go-vela/vela-makisu
- Navigate to the repository code:
# Change into the project directory
cd $HOME/go-vela/vela-makisu
- Point the original code at your fork:
# Add a remote branch pointing to your fork
git remote add fork https://github.com/your_fork/vela-makisu
- Navigate to the repository code:
# Change into the project directory
cd $HOME/go-vela/vela-makisu
- Build the repository code:
# Build the code with `make`
make build
- Run the repository code:
# Run the code with `make`
make run
- Navigate to the repository code:
# Change into the project directory
cd $HOME/go-vela/vela-makisu
-
Write your code
- Please be sure to follow our commit rules
-
Ensure your code meets the project standards:
# Clean the code with `make`
make clean
- Push to your fork:
# Push your code up to your fork
git push fork master
- Open a pull request. Thank you for your contribution!