If you are beginning your journey with Senzing, please start with Senzing Quick Start guides.
You are in the Senzing Garage where projects are "tinkered" on. Although this GitHub repository may help you understand an approach to using Senzing, it's not considered to be "production ready" and is not considered to be part of the Senzing product. Heck, it may not even be appropriate for your application of Senzing!
This repository contains exemplar artifacts (files) for Senzing repositories.
GitHub provides support for these artifacts. As an example, click on the following links on this GitHub repository:
- "Insights" tab > "Community" on left-hand navigation bar
Senzing community files:
Although the file you are reading is a README.md
file, this isn't the style of README.md
for most projects.
Depending upon the type of repository, the following README.md
templates may be more appropriate:
- README.md template for demonstrations. Examples:
The contents of CHANGELOG.md are meant to be consumed by users of the repository. As such, they need to know what changes affect them as users. In general, changes that do not effect users should not be captured in CHANGELOG.md. For this reason, automatic generation of CHANGELOG.md entries is discouraged.
The format of CHANGELOG.md
is based on Keep a Changelog,
markdownlint.
Also, projects adhere to Semantic Versioning.
The CODE_OF_CONDUCT.md file describes the social conventions among contributors to the repository.
A code of conduct defines standards for how to engage in a community. It signals an inclusive environment that respects all contributions. It also outlines procedures for addressing problems between members of your project's community. For more information on why a code of conduct defines standards and expectations for how to engage in a community, see the Open Source Guide.
-- GitHub's Adding a code of conduct to your project
The CODE_OF_CONDUCT.md file in this repository is based on GitHub's "Contributor Covenant".
- Option #1: Using GitHub's "Wizard"
- github.com > (choose repository) > Insights > Community > Code of conduct > "Add" button > "Contributor Covenant"
- Option #2: Manual file creation
- See GitHub's Adding a code of conduct to your project
- Alternative
CODE_OF_CONDUCT.md
content:
The CONTRIBUTING.md file describes the process for contributing to the repository.
To help your project contributors do good work, you can add a file with contribution guidelines to your project repository's root. When someone opens a pull request or creates an issue, they will see a link to that file.
-- GitHub's Setting guidelines for repository contributors
The CONTRIBUTING.md file in this repository is an example that needs to be modified to represent the requirements of the actual repository.
- Option #1: Using GitHub's "Wizard"
- github.com > (choose repository) > Insights > Community > Contributing > "Add" button
- Option #2: Manual file creation
- See GitHub's Setting guidelines for repository contributors
The docs/ subdirectory may be published as GitHub Pages. They become visible at hub.senzing.com. URLs have the format:
https://hub.senzing.com/<repository-name>
Example: hub.senzing.com/sdk-components-ng
The
CODEOWNERS
file implements GitHub's
code owners.
The teams that may appear in a CODEOWNERS
file can be seen at
github.com/orgs/Senzing/teams.
The dependabot.yml file is configuration for GitHub's dependabot.
The Senzing, INC. Software Grant and Corporate Contributor License Agreement (CCLA), corporate-contributor-license-agreement.pdf, is the standard agreement for a corporation's contribution to a Senzing repository.
- Make a
.github
directory in the repository - Copy senzing-corporate-contributor-license-agreement.pdf into the new
.github
directory - DO NOT modify the contents of senzing-corporate-contributor-license-agreement.pdf without legal approval.
- Reference
senzing-corporate-contributor-license-agreement.pdf
in CONTRIBUTING.md
The Individual Contributor License Agreement (ICLA), senzing-individual-contributor-license-agreement.pdf, is the standard agreement for an individual's contribution to a Senzing repository. Note: if an individual is contributing on behalf of a company, the senzing-corporate-contributor-license-agreement.pdf must also be submitted and accepted.
- Make a
.github
directory in the repository - Copy senzing-individual-contributor-license-agreement.pdf into the new
.github
directory - DO NOT modify the contents of senzing-individual-contributor-license-agreement.pdf without legal approval.
- Reference
senzing-individual-contributor-license-agreement.pdf
in CONTRIBUTING.md
The LICENSE
file describes the terms and conditions under which the code in the repository can be used.
The recommended license file is
"Apache License 2.0".
A comparison of licenses can be found at
choosealicense.com.
The LICENSE file in this repository is based on "Apache License 2.0".
- Option #1: Using GitHub's "Wizard"
- When creating a new repository, in the "Add a license:" drop-down, choose "Apache License 2.0"
- Option #2: Manual file creation
- See GitHub's Adding a license to a repository