-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
250 lines (245 loc) · 9.67 KB
/
index.html
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="assets/dist/styles.css" />
<title>Documentation for Astarte</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body>
<section class="container-fluid text-center w-75 m-auto">
<a href="https://github.com/astarte-platform">
<img
class="img-fluid col-8 col-sm-6 col-md-5 col-lg-4 col-xl-2 my-5"
src="assets/clea-astarte.svg"
alt="astarte-kubernetes"
/></a>
<div class="text-center container-lg mx-sm-auto mb-4">
<h1 class="text-center text-secondary fs fw-bold mb-4">
Documentation
</h1>
<p class="text-black-50 fs-5">
Astarte is a Data Orchestration Platform focused on IoT. It manages
your Devices, organises their data, and automatically orchestrates
your Data Science Pipelines.
</p>
</div>
</section>
<section class="bg-light pt-4 p-3 w-100 m-auto">
<h1 class="text-center text-secondary fw-bold py-4">
Everything you need to know at your fingertips
</h1>
<p class="text-black-50 fs-5">
Bring your IoT project to the next level.
</p>
<div class="container d-flex flex-wrap justify-content-around p-0 p-sm-5">
<div class="shadow card mb-4" style="width: 21rem; max-height: 30rem">
<img
style="height: 200px"
class="img-fluid m-auto"
src="./assets/mascot.png"
alt="astarte-platform"
/>
<div class="card-body p-1 pb-2">
<h5 class="card-title text-start ps-3 pt-2 text-secondary fs-4">
Astarte
</h5>
<p class="text-black-50 text-start ps-3">
It takes care of everything from collecting data from device to
delivering data to end-user applications.
</p>
<a
href="astarte/latest/"
class="btn btn-outline-primary float-end me-3"
>
Learn More
</a>
</div>
</div>
<div class="shadow card mb-4" style="width: 21rem; max-height: 30rem">
<img
style="height: 200px"
class="img-fluid m-auto"
src="./assets/mascotte_k8s.svg"
alt="astarte-platform"
/>
<div class="card-body p-1 pb-2">
<h5 class="card-title text-start ps-3 pt-2 text-secondary fs-4">
Astarte Operator
</h5>
<p class="text-black-50 text-start ps-3">
Astarte Kubernetes Operator runs and manages an Astarte Cluster in
a Kubernetes Cluster.
</p>
<a
href="astarte-kubernetes-operator/latest/"
class="btn btn-outline-primary float-end me-3"
>
Learn More
</a>
</div>
</div>
<div class="shadow card mb-4" style="width: 21rem; max-height: 30rem">
<img
style="height: 200px"
class="img-fluid m-auto"
src="./assets/mascotte.svg"
alt="astarte-platform"
/>
<div class="card-body p-1 pb-4">
<h5 class="card-title text-start ps-3 pt-2 text-secondary fs-4">
Astarte Flow
</h5>
<p class="text-black-50 text-start ps-3">
Astarte Flow is the main hub for integrating you AI pipelines and
Data Science workloads in your IoT product.
</p>
<a
href="flow/latest/"
class="btn btn-outline-primary float-end me-3"
>
Learn More
</a>
</div>
</div>
</div>
</section>
<section class="py-5 pb-5 w-75 m-auto">
<div class="container">
<h1 class="text-center text-secondary fw-bold pb-3">
Astarte Device SDKs
</h1>
<p class="text-black-50 fs-5 mx-5 pb-4">
Astarte Device SDKs are ready to use libraries that provide
communication and pairing primitives. They allow to connect any device
to an Astarte instance.
</p>
<a href="device-sdks/index.html" class="btn btn-outline-primary me-3">
Learn More
</a>
</div>
</section>
<section class="bg-light pt-4 p-3 w-100 m-auto">
<div class="container">
<h1 class="text-secondary fw-bold py-3">Quickstart</h1>
<p class="text-center text-black-50 fs-5 mx-auto pb-4">
This tutorial will guide you through bringing up your Astarte
instance, creating a realm and streaming your first data from a device
simulator (or a real device) before your cup of tea is ready.
</p>
<a
href="astarte/latest/010-astarte_in_5_minutes.html"
class="btn btn-outline-primary me-3"
>
Try Astarte in 5 minutes
</a>
</div>
</section>
<section class="p-1 w-100 m-auto">
<h1 class="text-center text-secondary fw-bold pt-4 pb-5">
Helpful links
</h1>
<div class="container w-75">
<div class="row row-cols-1 row-cols-lg-2">
<div class="col text-start mb-5">
<h3 class="fs-5 text-black-50">
ARCHITECTURE, DESIGN AND CONCEPTS
</h3>
<h2 class="text-secondary fs-3">Design Principles</h2>
<p class="text-black-50 fs-5 me-5">
Astarte has a strongly opinionated design aimed at the generic IoT
/ data-driven use case. As such, and unlike other platforms, it
strives to streamline a very simple user workflow for ingesting,
distributing and retrieving data, built on a set of concepts and
principles.
</p>
<a class="link" href="astarte/latest/010-design_principles.html">
Read More
</a>
</div>
<div class="col text-start mb-5">
<h3 class="fs-5 text-black-50">
ARCHITECTURE, DESIGN AND CONCEPTS
</h3>
<h2 class="text-secondary fs-3">Interfaces</h2>
<p class="text-black-50 fs-5 me-5">
Interfaces are a core concept of Astarte which defines how data is
exchanged between Astarte and its peers.
</p>
<a class="link" href="astarte/latest/030-interface.html">
Read More
</a>
</div>
<div class="col text-start mb-5">
<h3 class="fs-5 text-black-50">USER GUIDE</h3>
<h2 class="text-secondary fs-3">Introduction</h2>
<p class="text-black-50 fs-5 me-5">
Astarte is an Open Source Iot platform focused on Data management.
It takes care of everything from collecting data from devices to
delivering data to end-user applications.
</p>
<a class="link" href="astarte/latest/001-intro_user.html">
Read More
</a>
</div>
<div class="col text-start mb-5">
<h3 class="fs-5 text-black-50">
ARCHITECTURE, DESIGN AND CONCEPTS
</h3>
<h2 class="text-secondary fs-3">
Authentication and Authorization
</h2>
<p class="text-black-50 fs-5 me-5">
Authentication and authorization are crucial, as Astarte likely
holds sensitive resources and is capable to send mass commands to
a device fleet.
</p>
<a class="link" href="astarte/latest/070-auth.html"> Read More </a>
</div>
<div class="col text-start mb-5">
<h3 class="fs-5 text-black-50">ADMINISTRATOR GUIDE</h3>
<h2 class="text-secondary fs-3">System Requirements</h2>
<p class="text-black-50 fs-5 me-5">
Astarte is a Native Kubernetes application, and as such Kubernetes
is a hard requirement. It is possible to run Astarte outside
Kubernetes, although a number of features won't be available -
these setups are outside the scope of this document.
</p>
<a
class="link"
href="astarte-kubernetes-operator/latest/010-system_requirements.html"
>
Read More
</a>
</div>
<div class="col text-start mb-5">
<h3 class="fs-5 text-black-50">USER GUIDE</h3>
<h2 class="text-secondary fs-3">Interacting with Astarte</h2>
<p class="text-black-50 fs-5 me-5">
Astarte's interaction is logically divided amongst two main
entities. Devices are the bottom end, and represent your IoT
fleet. Users are actual users, applications or anything else which
needs to interact directly with Astarte.
</p>
<a
class="link"
href="astarte/latest/010-interacting_with_astarte.html"
>
Read More
</a>
</div>
</div>
</div>
</section>
</body>
</html>