-
-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathconstants.tsx
More file actions
47 lines (45 loc) · 1.53 KB
/
constants.tsx
File metadata and controls
47 lines (45 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import React from 'react';
export const BACKENDS_HELP_SKY = {
header: <h2>Backends</h2>,
body: (
<>
<p>
To use <code>dstack</code> with cloud providers, you have to configure backends.
</p>
<h4>Marketplace</h4>
<p>
By default, <code>dstack Sky</code> includes a preset of backends that let you access compute from the{' '}
<code>dstack</code> marketplace and pay through your <code>dstack Sky</code> user billing.
</p>
<h4>Your own cloud accounts</h4>
<p>
You can also configure custom backends to use your own cloud providers, either instead of or in addition to the
default ones.
</p>
<p>
See the{' '}
<a href={'https://dstack.ai/docs/concepts/backends'} target="_blank">
documentation
</a>{' '}
for the list of supported backends.
</p>
</>
),
};
export const BACKENDS_HELP_ENTERPRISE = {
header: <h2>Backends</h2>,
body: (
<>
<p>
To use <code>dstack</code> with cloud providers, you have to configure backends.
</p>
<p>
See the{' '}
<a href={'https://dstack.ai/docs/concepts/backends'} target="_blank">
documentation
</a>{' '}
for the list of supported backends.
</p>
</>
),
};