mirror of
https://github.com/github/choosealicense.com
synced 2024-11-05 11:18:50 +01:00
001d3dea74
"[D]oesn't have to be scary" is hardly non-judgmental nor inviting for anyone whose first encounter with open source licensing is this site. I've also never heard anyone other than this site claim that choosing an open source license can be scary. Confusing or extremely boring, yes. Choosing to go open source, yes that can be scary. Choosing among open source licenses, no.
77 lines
2.2 KiB
HTML
77 lines
2.2 KiB
HTML
---
|
||
layout: default
|
||
class: home
|
||
hide_breadcrumbs: true
|
||
title: Choose an open source license
|
||
permalink: /
|
||
---
|
||
|
||
<h2>
|
||
<span>{</span>
|
||
Which of the following best describes your situation?
|
||
<span>}</span>
|
||
</h2>
|
||
<ul class="triptych situations clearfix">
|
||
<li class="whatever">
|
||
<a href="licenses/mit">
|
||
<span class="triptych-sprite three-arrows"></span>
|
||
<h3>I want it simple and permissive.</h3>
|
||
</a>
|
||
<p>
|
||
The <a href="licenses/mit">MIT License</a> is a permissive license that is short and to the point. It lets people do anything they want with your code as long as they provide attribution back to you and don’t hold you liable.
|
||
</p>
|
||
<p>
|
||
{% include using-sentence.html license-id="mit" %}
|
||
</p>
|
||
</li>
|
||
<li class="patents">
|
||
<a href="licenses/apache-2.0/">
|
||
<span class="triptych-sprite lightbulb"></span>
|
||
<h3>I’m concerned about patents.</h3>
|
||
</a>
|
||
<p>
|
||
The <a href="licenses/apache-2.0/">Apache License 2.0</a> is a permissive license similar to the MIT License, but also provides an express grant of patent rights from contributors to users.
|
||
</p>
|
||
<p>
|
||
{% include using-sentence.html license-id="apache-2.0" %}
|
||
</p>
|
||
</li>
|
||
<li class="copyleft">
|
||
<a href="licenses/gpl-3.0/">
|
||
<span class="triptych-sprite circular"></span>
|
||
<h3>I care about sharing improvements.</h3>
|
||
</a>
|
||
<p>
|
||
The <a href="licenses/gpl-3.0/">GNU GPLv3</a> is a copyleft license that requires anyone who distributes your code or a derivative work to make the source available under the same terms, and also provides an express grant of patent rights from contributors to users.
|
||
</p>
|
||
<p>
|
||
{% include using-sentence.html license-id="gpl-3.0" %}
|
||
</p>
|
||
</li>
|
||
</ul>
|
||
<h2>
|
||
<span>{</span>
|
||
What if none of these work for me?
|
||
<span>}</span>
|
||
</h2>
|
||
<ul class="triptych see-more clearfix">
|
||
<li>
|
||
<h3>My project isn’t software.</h3>
|
||
<p>
|
||
<a href="non-software">There are licenses for that</a>.
|
||
</p>
|
||
</li>
|
||
<li>
|
||
<h3>I want more choices.</h3>
|
||
<p>
|
||
<a href="licenses">More licenses are available</a>.
|
||
</p>
|
||
</li>
|
||
<li>
|
||
<h3>I don’t want to choose a license.</h3>
|
||
<p>
|
||
<a href="no-license">You don’t have to</a>.
|
||
</p>
|
||
</li>
|
||
</ul>
|