Skip to content

Commit d5445e5

Browse files
committed
Added support for Quickwit enterprise license.
1 parent a91d2e7 commit d5445e5

File tree

18 files changed

+809
-273
lines changed

18 files changed

+809
-273
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@
44
**/proptest-regressions
55
**/perf.data*
66
**/flamegraph.svg
7+
**/venv
8+
**/esdata
79
local/**
810
quickwit/quickwit-ui/package-lock.json
911
**/.DS_Store
12+
**/.zed
1013

1114
TODO.md
1215
QUESTIONS.txt

LICENSE.md

+12-17
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
1-
Copyright (C) 2024 Quickwit, Inc.
1+
Copyright (C) 2024-Present Quickwit, Inc.
22

3-
Quickwit is offered under the [GNU Affero General Public License v3.0](https://opensource.org/licenses/AGPL-3.0)
4-
and as commercial software.
5-
A copy of the AGPL license can be found in [LICENSE_AGPLv3.0.txt](LICENSE_AGPLv3.0.txt)
3+
Source code in this directory are licensed either under
4+
- Both the AGPL and the Quickwit Enterprise License.
5+
- the Quickwit Enterprise License
66

7-
# Commercial Licensing
8-
For commercial licensing, contact us at [email protected].
7+
Source files that are license under both the AGPL and the Quickwit enterprise
8+
are prefixed explicitly with the AGPL license header.
99

10+
Source files that are strictly licensed under the Quickwit Enterprise License
11+
are prefixed by the Quickwit Enterprise License header.
1012

11-
# AGPL
12-
This program is free software: you can redistribute it and/or modify
13-
it under the terms of the GNU Affero General Public License as
14-
published by the Free Software Foundation, either version 3 of the
15-
License, or (at your option) any later version.
13+
A copy of the AGPL license can be found in [LICENSE_AGPLv3.0.txt](LICENSE_AGPLv3.0.txt)
14+
A copy of the Quickwit Enterprise license can be found in [LICENSE_QUICKWIT_ENTERPRISE.txt](LICENSE_QUICKWIT_ENTERPRISE.txt)
1615

17-
This program is distributed in the hope that it will be useful,
18-
but WITHOUT ANY WARRANTY; without even the implied warranty of
19-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20-
GNU Affero General Public License for more details.
16+
# To purchase a Quickwit Enterprise License
2117

22-
You should have received a copy of the GNU Affero General Public License
23-
along with this program. If not, see <http://www.gnu.org/licenses/>.
18+
To purchase Quickwit Enteprise License, contact us at [email protected].

LICENSE_QUICKWIT_ENTERPRISE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The Quickwit Enterprise Edition (EE) license
2+
Copyright (c) 2024-present Quickwit Inc.
3+
4+
With regard to the Quickwit Software:
5+
6+
This software and associated documentation files (the "Software") may only be
7+
used in production, if you (and any entity that you represent) hold a valid
8+
Quickwit Enterprise license corresponding to your usage.
9+
10+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
12+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
13+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
14+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
15+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
16+
SOFTWARE.
17+
18+
For all third party components incorporated into the Quickwit Software, those
19+
components are licensed under the original license provided by the owner of the
20+
applicable component.
21+

0 commit comments

Comments
 (0)