78 lines
2.2 KiB
Plaintext
78 lines
2.2 KiB
Plaintext
---
|
|
title: Introduction aux licences applicable au code
|
|
description: Gnu, GPL, MIT, etc. Une introduction aux licences pour le code.
|
|
author: L'équipe OSQ
|
|
lastUpdated: 2025-01-30
|
|
draft: false
|
|
---
|
|
|
|
import {Aside, Card, CardGrid, LinkButton} from "@astrojs/starlight/components";
|
|
|
|
## Qu'est-ce qu'une licence
|
|
C'est un texte légal qui accompagne le code pour déterminer quel est l'entente entre le développeur et celui qui utilise le code.
|
|
|
|
## Quels critères prioriser pour son projet
|
|
|
|
## Les licences principales
|
|
|
|
<CardGrid>
|
|
<Card title="Apache">
|
|
<LinkButton
|
|
href="/fr/guides/licences/apache/"
|
|
variant="secondary"
|
|
iconPlacement="end">
|
|
Plus d'informations
|
|
</LinkButton>
|
|
</Card>
|
|
<Card title="GNU">
|
|
<LinkButton
|
|
href="/fr/guides/licences/gnu/"
|
|
variant="secondary"
|
|
iconPlacement="end">
|
|
Plus d'informations
|
|
</LinkButton>
|
|
</Card>
|
|
<Card title="GPL">
|
|
<LinkButton
|
|
href="/fr/guides/licences/gpl/"
|
|
variant="secondary"
|
|
iconPlacement="end">
|
|
Plus d'informations
|
|
</LinkButton>
|
|
</Card>
|
|
<Card title="MIT">
|
|
<LinkButton
|
|
href="/fr/guides/licences/mit/"
|
|
variant="secondary"
|
|
iconPlacement="end">
|
|
Plus d'informations
|
|
</LinkButton>
|
|
</Card>
|
|
</CardGrid>
|
|
|
|
## Les licences plus par rapport à la gestion de la communauté
|
|
|
|
<CardGrid>
|
|
<Card title="DBAD">
|
|
|
|
<LinkButton
|
|
href="/fr/guides/licences/dbad/"
|
|
variant="secondary"
|
|
iconPlacement="end">
|
|
Plus d'informations
|
|
</LinkButton>
|
|
</Card>
|
|
</CardGrid>
|
|
|
|
## Plus de lecture
|
|
|
|
### Anglais
|
|
- [Page wikipedia sur les types de licences opensource](https://en.wikipedia.org/wiki/Open-source_license)
|
|
- [Listes de licence pour des projets gratuits](https://en.wikipedia.org/wiki/Category:Free_and_open-source_software_licenses)
|
|
|
|
|
|
|
|
<Aside type="danger" title={"Notes importantes"}>
|
|
Ceci n'est pas un conseil légal, il sert uniquement à accélérer l'apprentissage par rapport à la publication de code. Si vous avez un plan d'affaires ou du code, consultez un avocat pour vous conseiller.
|
|
</Aside>
|