mirror of
https://github.com/outbackdingo/vaultwarden.git
synced 2026-01-27 10:20:51 +00:00
984 B
984 B
Contributing Guide
Requirements
- Fork this repository, develop, and test your changes.
- Submit a pull request.
Technical Requirements
When submitting a PR make sure that it:
-
The PR follow Helm best practices.
-
Any change to a chart requires a version bump following semver principles.
-
The tables of parameters are generated based on the metadata information from the
values.yamlfile, by using this tool.The easiest way to do this is to run the tool via Docker:
# Clone and build: git clone https://github.com/bitnami-labs/readme-generator-for-helm cd readme-generator-for-helm/ docker build -t readme-gen . # Run the tool and mount the current project directory. cd <this-project-dir> docker run --rm -d -it --name readmegen -v $(pwd):/mnt readme-gen bash docker exec -it readmegen bash