Using Insiders for an open source project. #3844
-
If a user is planning to use Insiders for an open source project (where s(he) expects other users to also contribute), is that covered under the terms & conditions of using Insiders ? In other words, I might be a sponsor, but open source contributors to my project may not be sponsors, so are they allowed to also use Insiders while contributing ? If so, any guidelines/things to keep in mind ? Thanks ! :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Of course! Several Open Source projects already use Insiders, e.g. FastAPI. The terms are the same for Open Source and commercial projects – you're not allowed to release the source code of Insiders, because this would invalidate the whole funding model and will lead to me not being able to work on this project anymore, thus everybody loses. Also, you shouldn't share the source code with outside contributors. As long as that's covered, it's good. In order to support outside contributions, you can use Insiders in a GitHub Action to build your documentation project. This means that you won't have to share your access, but users are still able to contribute. Also, they can use the non-Insiders version locally to preview changes, and when changes are pushed, the documentation is built and released with Insiders. That's exactly how FastAPI and also Material for MkDocs do it. |
Beta Was this translation helpful? Give feedback.
Of course! Several Open Source projects already use Insiders, e.g. FastAPI. The terms are the same for Open Source and commercial projects – you're not allowed to release the source code of Insiders, because this would invalidate the whole funding model and will lead to me not being able to work on this project anymore, thus everybody loses. Also, you shouldn't share the source code with outside contributors. As long as that's covered, it's good.
In order to support outside contributions, you can use Insiders in a GitHub Action to build your documentation project. This means that you won't have to share your access, but users are still able to contribute. Also, they can use the non-Inside…