# 깃허브에 플러그인을 공유하려고 하는데 라이선스 파일을 추가해야 하나요? 어떤 것이 좋을까요?

**URL:** https://meta.discourse.org/t/i-want-to-share-plugin-on-github-do-i-have-to-add-any-license-file-which-one/386418
**Category:** Development
**Created:** [10월 22, 2025, 9:42오전 UTC](https://meta.discourse.org/t/i-want-to-share-plugin-on-github-do-i-have-to-add-any-license-file-which-one/386418 "2025-10-22T09:42:46Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![jvermach](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jvermach/32/526401_2.png) [@jvermach](https://meta.discourse.org/u/jvermach)
#### Post date: [10월 22, 2025, 9:42오전 UTC](https://meta.discourse.org/t/i-want-to-share-plugin-on-github-do-i-have-to-add-any-license-file-which-one/386418/1 "2025-10-22T09:42:46Z")

</div>

안녕하세요,

저희는 디스커스를 위한 플러그인을 개발했습니다. 이 플러그인을 GitHub에 올리려고 하며, 디스커스 커뮤니티와 공유하고 싶습니다. 올바르게 공유하기 위해 어떤 라이선스를 사용해야 할까요?

감사합니다.

Josef

---

<div class="post-metadata">

### Author: ![NateDhaliwal](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/natedhaliwal/32/313494_2.png) [@NateDhaliwal](https://meta.discourse.org/u/NateDhaliwal)
#### Post date: [10월 22, 2025, 9:51오전 UTC](https://meta.discourse.org/t/i-want-to-share-plugin-on-github-do-i-have-to-add-any-license-file-which-one/386418/2 "2025-10-22T09:51:09Z")

</div>

[공식 플러그인 스켈레톤](https://github.com/discourse/discourse-plugin-skeleton)을 따르면 MIT 라이선스를 사용합니다.

저는 법률 전문가가 아니지만, 관리자가 자신의 공개(및 비공개) 포럼에 설치할 수 있으므로 지나치게 제한적인 라이선스가 아닌 것을 선택하는 것도 좋습니다.

다음도 참고하세요:

> **[Licensing a repository - GitHub Docs](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository)**
>
> Public repositories on GitHub are often used to share open source software. For your repository to truly be open source, you'll need to license it so that others are free to use, change, and distribute the software.

GitHub에서 LICENSE 파일을 만들면 각 라이선스가 허용하거나 포함하는 범위에 대한 템플릿과 개요를 제공하므로 도움이 됩니다.

---

<div class="post-metadata">

### Author: ![elmuerte](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/elmuerte/32/456517_2.png) [@elmuerte](https://meta.discourse.org/u/elmuerte)
#### Post date: [10월 24, 2025, 6:21오전 UTC](https://meta.discourse.org/t/i-want-to-share-plugin-on-github-do-i-have-to-add-any-license-file-which-one/386418/3 "2025-10-24T06:21:34Z")

</div>

Discourse는 _GPL v2 또는 그 이후_ 라이선스(더 나은 라이선스 호환성을 위해 GPL 3으로 변경되기를 희망하지만)로 배포됩니다.

이는 GPL v2와 호환되는 라이선스로 제한됨을 의미합니다:

- GPL v2
- LGPL v2
- MIT
- 수정된 BSD (3조항 또는 2조항)
- zlib
- MPL v2
- ISC

Discourse가 GPLv3를 사용했다면 Apache-2와 같이 [더 많은 호환 라이선스](https://www.gnu.org/licenses/license-list.en.html#GPLCompatibleLicenses)가 가능했을 것입니다.

Discourse 자체는 Apache-2 라이선스로 배포된 [의존 패키지](https://github.com/discourse/discourse/blob/main/.licensed.yml)를 사용합니다. 따라서 완전히 준수하려면 _GPL v3 또는 그 이후_로 전환해야 합니다.
