Skip to content
This repository was archived by the owner on Apr 19, 2021. It is now read-only.

Commit be228b3

Browse files
AlexTugarevsvenefftinge
authored andcommitted
[self-hosted] add terms
1 parent 4acf778 commit be228b3

File tree

1 file changed

+100
-0
lines changed

1 file changed

+100
-0
lines changed

src/pages/self-hosted-terms.tsx

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
import React from 'react'
2+
3+
import IndexLayout from '../layouts'
4+
import TextBox from '../components/TextBox'
5+
6+
const SelfHostedTermsPage: React.SFC<{}> = () => (
7+
<IndexLayout canonical="/terms/" title="Terms">
8+
<TextBox>
9+
<h1>Gitpod Self-Hosted Free License Terms and Gitpod Enterprise Source Code License</h1>
10+
<h3>1 Preamble</h3>
11+
<p>1.1 These Software Licensing Terms (“Terms”) provide the terms and conditions
12+
that govern usage of the Software Gitpod Self-Hosted Free Edition in source and
13+
binary form (“Software”). The Software is provided by TypeFox GmbH, Am
14+
Germaniahafen 1, 24143 Kiel (“TypeFox”). By downloading or using to the
15+
Software, you agree to be bound by the following Terms.</p>
16+
<h3>2 Scope of Terms</h3>
17+
<p>2.1 These Terms apply to the usage of the Software, which is designed to be used
18+
for business purposes.</p>
19+
<p>2.2 These Terms apply to the binary code and to the source code of the Software,
20+
unless the header of a source file explicitly refers to a different license.</p>
21+
<p>2.3 These Terms apply unless you have a separate agreement with TypeFox in
22+
written form that explicitly supersedes these Terms.</p>
23+
<h3>3 License Fees</h3>
24+
<p>3.1 The use of the Software as described in Sec. 2 is free of charge. It is
25+
however limited to the features that are accessible without a license key and
26+
may only take place in accordance with these Terms.</p>
27+
<p>3.2 In case you want to use additional features or distribute the Software or
28+
modifications to it without the restrictions of these Terms, please reach out
29+
for a license key, which is subject to different legal and commercial terms.</p>
30+
<h3>4 Granting of Rights</h3>
31+
<p>4.1 Permission is hereby granted to obtain a copy of the Software and their
32+
accompanying documentation to use, reproduce and execute the Software for
33+
internal purposes in accordance with these Terms and to distribute the
34+
unmodified software without charging a fee for it.</p>
35+
<p>4.2 Subject to the conditions of these Terms, you may modify the Software,
36+
including patching it. You agree that TypeFox retains all right, title and
37+
interest in and to all such modifications and patches (“Modifications”). You may
38+
only use, reproduce and execute the Modifications for internal purposes in
39+
accordance with these Terms. You may not distribute Modifications to any third
40+
party. Nonetheless, you may make such modifications publicly available as fork
41+
of the repository which hosts the original version of the Software, however only
42+
under these Terms and only, if accompanied by the complete machine-readable
43+
source code of the Modifications and of the Software.</p>
44+
<p>4.3 The copyright notices in the Software and this entire statement, including
45+
the above license grant and these Terms must be included in all copies of the
46+
Software (in whole or in part). Copyright notices, serial numbers and other
47+
features aimed at product identification or control may not be removed, altered,
48+
suppressed or otherwise bypassed under any circumstances. For the avoidance of
49+
doubt, the software may neither in source nor in binary form be modified in
50+
order to enable or activate any features of the software that would otherwise
51+
require a valid license key.</p>
52+
<p>4.4 Any other usage of the Software, in particular modifying, combining it with
53+
other software and providing it to third parties on a commercial basis, is
54+
prohibited. This includes any sale, lease, indirect use of the Software to the
55+
benefit of third parties and its provision as a commercial service, or offering
56+
it as a part of a commercial service or platform.</p>
57+
<p>4.5 The Software remains the exclusive intellectual property of TypeFox at all
58+
times. Mandatory rights resulting from applicable copyright law (e.g. related to
59+
decompilation) remain unaffected.</p>
60+
<p>4.6 TypeFox provides the source code of the Software on a voluntary basis and is
61+
not obligated to do so. Furthermore, TypeFox is not obligated to provide any
62+
updates or upgrades it may develop.</p>
63+
<p>4.7 Please consider purchasing a license key (see above Sec. 3) for further
64+
usage rights and additional features.</p>
65+
<h3>5 Telemetry</h3>
66+
<p>5.1 TypeFox intends to collect certain statistical data on the use of the
67+
Software on an anonymized basis in the future with a future version of the
68+
Software. The data will only be used to improve the Software and the data will
69+
not be sold to third parties. TypeFox will inform about this with the future
70+
release.</p>
71+
<h3>6 Warranty and Liability</h3>
72+
<p>6.1 THE SOFTWARE IS PROVIDED FREE OF CHARGE ON AN “AS IS” BASIS, WITHOUT
73+
WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
74+
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
75+
NON-INFRINGEMENT.</p>
76+
<p>6.2 IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE
77+
BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR
78+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OF
79+
OR OTHER DEALINGS IN THE SOFTWARE.</p>
80+
<p>6.3 THIS LIMITATION OF LIABILITY DOES NOT EXCLUDE MANDATORY LEGAL GROUNDS FOR
81+
LIABILITY SUCH AS LIABILITY FOR PERSONAL INJURY, GROSS NEGLIGENCE, WILLFUL
82+
INTENT OR LAWS ON PRODUCT LIABILITY.</p>
83+
<h3>7 Third-party Components</h3>
84+
<p>7.1 The Software contains third-party components including open source software
85+
(“Third-Party Components“). Parts of such Third-Party Components are subject to
86+
deviating license terms (“Third-Party License Terms“). A list of such
87+
Third-Party Components and its respective Third-Party License Terms are
88+
available via the files License.third-party.npm.txt and
89+
License.third-party.go.txt. No stipulation in these Terms is intended to impose
90+
further restrictions on your use of such Third-Party Components licensed under
91+
Third-Party License Terms.</p>
92+
<p>7.2 TypeFox reserves the right to introduce deviating or additional Third-Party
93+
License Terms in the course of modifications of the Software and in case of
94+
updates for the Software to the extent necessary due to additional Third-Party
95+
Components or due to changed Third-Party License Terms.</p>
96+
</TextBox>
97+
</IndexLayout>
98+
)
99+
100+
export default SelfHostedTermsPage

0 commit comments

Comments
 (0)