Hi! We're really excited that you are interested in contributing to publicador
. Before submitting your contribution, please make sure to take a moment and read through the following guidelines:
-
The
main
branch is just a snapshot of the latest stable release. All development should be done in dedicated branches. Do not submit PRs against themain
branch. -
Checkout a topic branch from the relevant branch, e.g.
develop
, and merge back against that branch. Please follow this convention for the new branch:issueNumber-githubUsername-commitTitle
. -
Most of the contributed work should generally target the
lib
directory or theassets
directory on rare occasions when the client needs ajavascript
poke. -
It's OK to have multiple small commits as you work on the PR. We may squash them before merging if necessary.
-
Make sure
make test
passes. (see development setup) -
If adding a new feature:
- Add accompanying test cases.
- Provide a convincing reason to add this feature. Ideally, you should open a suggestion issue first and have it approved before working on it.
-
If fixing a bug:
- If you are resolving a special issue, please follow the branch naming convention mentioned above.
- Provide a detailed description of the bug in the PR. Live demo preferred.
- Add appropriate test coverage if applicable.
You will need python
version 3.
We don't expect any strict convention, but we'd be grateful if you summarize what your modifications content is about when writing a commit.
This Contributing Guidelines were adapted from the Vue.js Contributing Guide.