Skip to content
A site to provide non-judgmental guidance on choosing a license for your open source project
Ruby HTML CSS CoffeeScript Shell
Branch: gh-pages
Clone or download

Latest commit

mlinksva Merge pull request #727 from waldyrious/cc-fmt
Fix formatting of Creative Commons licenses
Latest commit 904bdf0 Mar 31, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
_data Add include-copyright--source condition to more precisely describe bs… Nov 18, 2019
_includes Merge pull request #709 from github/lgplv3complex Dec 26, 2019
_layouts rm unneeded trailing whitespace from various files Dec 25, 2019
_licenses update OSD iD LICENSE file location Mar 31, 2020
assets rm unneeded trailing whitespace from various files Dec 25, 2019
script rubocop Oct 27, 2018
spec Show BSL-1.0 between MIT and Unlicense in license spectrum Dec 26, 2019
.bowerrc
.gitattributes Clean up .gitignore and .gitattributes. Dec 9, 2013
.gitignore update script/server for jekyll 3 Feb 9, 2016
.rubocop.yml
.travis.yml gem update --system so that bundler 2 can be installed Jan 3, 2019
CNAME revert 48261c1 Jul 25, 2013
CODE_OF_CONDUCT.md Add Code of Conduct Feb 20, 2016
CONTRIBUTING.md Replace existing SPDX match with more explicit instruction Jan 13, 2019
Gemfile Revert "temporary workaround for github/pages-gem#665" Jan 24, 2020
LICENSE.md Update License year to 2018 Jan 3, 2018
README.md Merge branch 'gh-pages' into bin-no-by Nov 19, 2019
Rakefile don't test edit link links Feb 15, 2019
_config.yml Stop vendored material READMEs from rendering Aug 1, 2018
about.md edit edits Aug 26, 2019
appendix.md Make rules with -- eg same-license--file appear lighter in appendix t… Dec 3, 2019
bower.json Replaced zeroclipboard with clipboard.js Oct 25, 2015
community.md Update Rust community license guidelines link Nov 18, 2019
favicon.ico initial work on new design Sep 12, 2012
index.html
licenses.html Show BSL-1.0 between MIT and Unlicense in license spectrum Dec 26, 2019
no-permission.md Some wordiness reduction and grammar fixes Aug 26, 2019
non-software.md
robots.txt Remove `layout: nil`. Dec 20, 2014
terms-of-service.md a few minor markdown formatting fixes Feb 13, 2016

README.md

ChooseALicense.com aims to provide accurate, non-judgmental, and understandable information about popular open source licenses in order to help people make informed decisions about the projects they start, maintain, contribute to, and use.

Build Status

We catalog select open source licenses with a Jekyll collection (in _licenses). The catalog is used to render ChooseALicense.com and is regularly vendored into Licensee, which GitHub uses to provide a license chooser and license detection, a licenses API, and to display license descriptions and metadata.

Goals

  • Be accurate, non-judgmental, and understandable. Our goal is to help you find a license that meets your goals.
  • The homepage should have just enough to help most folks make a decision about what license to use for a project they contribute to.
  • For the rest, the site will contain additional information about licenses common to specific communities and situations.
  • Collaborate with and reinforce other licensing best practices and standards projects.
  • Not comprehensive. Seems like an odd goal, but there are a bajillion licenses out there. We're going to have to filter that down to a small list of those that matter.

Run It On Your Machine

git clone https://github.com/github/choosealicense.com.git
cd choosealicense.com
./script/bootstrap
./script/server

Open http://localhost:4000 in your favorite browser.

Adding a license

For information on adding a license, see the CONTRIBUTING file.

License metadata

Licenses sit in the /_licenses folder. Each license has YAML front matter describing the license's properties. The body of the file contains the text of the license in plain text. The available metadata fields are:

Required fields

  • title - The license full name specified by https://spdx.org/licenses/
  • spdx-id - Short identifier specified by https://spdx.org/licenses/
  • description - A human-readable description of the license
  • how - Instructions on how to implement the license
  • using - A list of 3 notable projects using the license with straightforward LICENSE files which serve as examples newcomers can follow and that can be detected by licensee in the form of project_name: license_file_url
  • permissions - Bulleted list of permission rules
  • conditions - Bulleted list of condition rules
  • limitations - Bulleted list of limitation rules

Optional fields

  • featured - Whether the license should be featured on the main page (defaults to false)
  • hidden - Whether the license is neither popular nor fills out the spectrum of licenses from strongly conditional to unconditional (defaults to true)
  • nickname - Customary short name if applicable (e.g, GPLv3)
  • note - Additional information about the licenses
  • redirect_from - Relative path(s) to redirect to the license from, to prevent breaking old URLs

Auto-populated fields

The licenses on choosealicense.com are regularly imported to GitHub.com to be used as the list of licenses available when creating a repository. When we create a repository, we will replace certain strings in the license with variables from the repository. These can be used to create accurate copyright notices. The available variables are:

Fields

  • fullname - The full name or username of the repository owner
  • login - The repository owner's username
  • email - The repository owner's primary email address
  • project - The repository name
  • description - The description of the repository
  • year - The current year
  • projecturl - The repository URL or other project website

License properties

The license properties (rules) are stored as a bulleted list within the licenses YAML front matter. Each rule has a name e.g., include-copyright, a human-readable label, e.g., Copyright inclusion, and a description Include the original copyright with the code. To add a new rule, simply add it to _data/rules.yml and reference it in the appropriate license.

Rules

Permissions

  • commercial-use - This software and derivatives may be used for commercial purposes.
  • modifications - This software may be modified.
  • distribution - This software may be distributed.
  • private-use - This software may be used and modified in private.
  • patent-use - This license provides an express grant of patent rights from contributors.

Conditions

  • include-copyright - A copy of the license and copyright notice must be included with the software.
  • include-copyright--source - A copy of the license and copyright notice must be included with the software in source form, but is not required for binaries.
  • document-changes - Changes made to the code must be documented.
  • disclose-source - Source code must be made available when the software is distributed.
  • network-use-disclose - Users who interact with the software via network are given the right to receive a copy of the source code.
  • same-license - Modifications must be released under the same license when distributing the software. In some cases a similar or related license may be used.
  • same-license--file - Modifications of existing files must be released under the same license when distributing the software. In some cases a similar or related license may be used.
  • same-license--library - Modifications must be released under the same license when distributing the software. In some cases a similar or related license may be used, or this condition may not apply to works that use the software as a library.

Limitations

  • trademark-use - This license explicitly states that it does NOT grant trademark rights, even though licenses without such a statement probably do not grant any implicit trademark rights.
  • liability - This license includes a limitation of liability.
  • patent-use - This license explicitly states that it does NOT grant any rights in the patents of contributors.
  • warranty - The license explicitly states that it does NOT provide any warranty.

License

The content of this project itself is licensed under the Creative Commons Attribution 3.0 Unported license, and the underlying source code used to format and display that content is licensed under the MIT license.

You can’t perform that action at this time.