Thank you for your interest in contributing to our project!
- Fork the repository
- Create a new branch for your changes
- Make your changes
- Sign your commits with DCO:
git commit -s -m "Your commit message" - Push to your fork and submit a pull request
We use the Developer Certificate of Origin (DCO) in lieu of a Contributor License Agreement (CLA) for all contributions to this project. DCO is a legally binding statement that asserts that you are the creator of your contribution and that you wish to allow us to use it in this project.
When you contribute to this repository with a pull request, you need
to sign-off that you agree to the DCO. You do this by adding a
Signed-off-by line to your commit messages containing your name and
email:
git commit -s -m "Your commit message"
This will automatically add a sign-off message to your commit. Alternatively, you can manually add:
Signed-off-by: John Doe <john.doe@example.org>- Keep code clean and simple
- Follow existing code style
- Update documentation if needed
- Go 1.21+
- Node.js 22+
- Docker
-
Clone the repository:
git clone https://github.com/getprobo/probo.git cd probo -
Install Go dependencies:
go mod download
-
Install JavaScript dependencies:
npm ci
-
Build the project:
make build
-
Start docker containers:
make stack-up
-
Start the development servers:
# In one terminal - start the API server bin/probod -cfg-file cfg/dev.yaml # In another terminal - start the frontend npm -w @probo/console run dev
The application should now be running at http://localhost:3000
For detailed information about all Docker services in the development stack, see Docker Services Documentation.
Create an issue if you:
- Found a bug
- Have a feature request
- Need help with something
Thank you for contributing!