Skip to content

Commit bade2ca

Browse files
author
Matteo Joliveau
committed
deploy
1 parent c23a44c commit bade2ca

8 files changed

+42
-34
lines changed

404.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<meta name="twitter:image" content="">
2626
<meta name="author" content="Enseada">
2727

28-
<meta name="generator" content="Hugo 0.63.2" />
28+
<meta name="generator" content="Hugo 0.65.3" />
2929

3030
<title>404 Page not found &middot; Enseada</title>
3131

@@ -374,7 +374,7 @@
374374
align-self: stretch !important; }
375375
</style>
376376

377-
<link href="/style.min.a3636f61285a533daad479f35324a9957d578abc7b90e33f92123377123a455b.css" rel="stylesheet">
377+
<link href="/style.min.ccd0052a7c50e26cdf9a5578b444b59d28dd6db2b0038eb0ffbc1992424bf0e6.css" rel="stylesheet">
378378
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
379379
<link rel="icon" sizes="16x16 32x32" type="image/x-icon" href="/favicon.ico">
380380
<link rel="icon" href="/favicon.png">

about/index.html

+15-18
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
<meta name="description" content="A Cloud native multi-package registry.
1616
Enseada is a modern, fast and scalable package registry, designed from the ground up to run in elastic, container-based environments and to be highly available and distributed.
1717
It leverages scalability by using natively distributed technologies
18-
The registry itself is written in Go, a statically typed and extremely fast programming language very popular in Cloud native applications.
18+
The registry itself is written in Rust, a statically typed and extremely fast programming language built for correctness and safety.
1919
CouchDB is used as the primary datastore, containing information about repositories, users and access control.">
2020
<meta property="og:title" content="About Enseada &amp;middot; Enseada">
2121
<meta property="og:url" content="/about/">
2222
<meta property="og:description" content="A Cloud native multi-package registry.
2323
Enseada is a modern, fast and scalable package registry, designed from the ground up to run in elastic, container-based environments and to be highly available and distributed.
2424
It leverages scalability by using natively distributed technologies
25-
The registry itself is written in Go, a statically typed and extremely fast programming language very popular in Cloud native applications.
25+
The registry itself is written in Rust, a statically typed and extremely fast programming language built for correctness and safety.
2626
CouchDB is used as the primary datastore, containing information about repositories, users and access control.">
2727
<meta property="og:site_name" content="Enseada">
2828
<meta property="og:type" content="website">
@@ -31,14 +31,14 @@
3131
<meta name="twitter:description" content="A Cloud native multi-package registry.
3232
Enseada is a modern, fast and scalable package registry, designed from the ground up to run in elastic, container-based environments and to be highly available and distributed.
3333
It leverages scalability by using natively distributed technologies
34-
The registry itself is written in Go, a statically typed and extremely fast programming language very popular in Cloud native applications.
34+
The registry itself is written in Rust, a statically typed and extremely fast programming language built for correctness and safety.
3535
CouchDB is used as the primary datastore, containing information about repositories, users and access control.">
3636
<meta name="twitter:url" content="/about/" />
3737
<meta property="og:image" content="">
3838
<meta name="twitter:image" content="">
3939
<meta name="author" content="Enseada">
4040

41-
<meta name="generator" content="Hugo 0.63.2" />
41+
<meta name="generator" content="Hugo 0.65.3" />
4242

4343
<title>About Enseada &middot; Enseada</title>
4444

@@ -387,7 +387,7 @@
387387
align-self: stretch !important; }
388388
</style>
389389

390-
<link href="/style.min.a3636f61285a533daad479f35324a9957d578abc7b90e33f92123377123a455b.css" rel="stylesheet">
390+
<link href="/style.min.ccd0052a7c50e26cdf9a5578b444b59d28dd6db2b0038eb0ffbc1992424bf0e6.css" rel="stylesheet">
391391
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
392392
<link rel="icon" sizes="16x16 32x32" type="image/x-icon" href="/favicon.ico">
393393
<link rel="icon" href="/favicon.png">
@@ -458,38 +458,35 @@ <h2>About Enseada</h2>
458458
to run in elastic, container-based environments and to be highly available and distributed.</p>
459459
<hr>
460460
<p>It leverages scalability by using natively distributed technologies</p>
461-
<p>The registry itself is written in <a href="https://golang.org">Go</a>, a statically typed and extremely fast programming language very popular in Cloud native applications.</p>
461+
<p>The registry itself is written in <a href="https://rust-lang.org">Rust</a>, a statically typed and extremely fast programming language built for correctness and safety.</p>
462462
<p><a href="https://couchdb.apache.org/">CouchDB</a> is used as the primary datastore, containing information about
463463
repositories, users and access control. CouchDB is a web-native database written in Erlang and based on web technologies like HTTP and JSON.</p>
464-
<p>As far as storage is concerned, both local disks an object storage services are supported altough the latter are strongly recommended for production deployments.</p>
464+
<p>Packages are can be stored in CouchDB itself, as file attachments, or in distributed object storage services like Amazon S3. The latter are recommended for production usage.</p>
465465
<h2 id="security-first">Security first</h2>
466466
<p>Enseada aims at providing a small, yet complete set of feature for managing software packages.
467467
Security is a priority concern, so an advanced policy engine provides the capabilities to define fine grained permissions over repositories and packages. From human users to automated service accounts, every access to the system is controlled, filtered and logged. A fully compliant <a href="https://auth0.com/docs/protocols/oauth2">OAuth 2</a> implementation allows integration with third party systems with ease.</p>
468468
<h2 id="management-api">Management API</h2>
469-
<p>A set of <a href="https://twitchtv.github.io/twirp">Twirp</a> APIs allows to programmatically interact with Enseada and its resources. Check the <a href="https://docs.enseada.io/developers/apis.html">documentation</a> for more information.</p>
469+
<p>A set of RESTful APIs allows to programmatically interact with Enseada and its resources. Check the <a href="https://docs.enseada.io/developers/apis.html">documentation</a> for more information.</p>
470470
<h2 id="management-ui">Management UI</h2>
471471
<p>The same set of functionalities exposed in the <a href="#management-api">API</a> is available as a built-in web GUI. Check the <a href="https://docs.enseada.io/users/ui.html">documentation</a> for more information.</p>
472472
<h2 id="supported-package-repositories">Supported package repositories</h2>
473473
<p>Enseada is a multi-package registry, meaning it can support a large number of package formats and registry APIs.</p>
474474
<p>At the moment, the following formats are supported:</p>
475475
<ul>
476-
<li><a href="https://maven.apache.org/guides/introduction/introduction-to-repositories.html">Maven 2 / 3</a></li>
476+
<li><a href="https://docs.docker.com/registry/spec/api/">Docker</a></li>
477+
<li><a href="https://maven.apache.org/guides/introduction/introduction-to-repositories.html">Maven 2/3</a></li>
477478
<li><a href="https://github.com/npm/registry/blob/master/docs/REGISTRY-API.md">NPM</a> (planned, coming soon)</li>
478-
<li><a href="https://docs.docker.com/registry/spec/api/">Docker</a> (planned, coming soon)</li>
479479
<li><a href="https://rubygems.org">RubyGems</a> (planned, coming soon)</li>
480+
<li><a href="https://doc.rust-lang.org/cargo/reference/registries.html">Rust crates</a> (planned, coming soon)</li>
481+
<li><a href="https://docs.gomods.io/intro/protocol/">Go module proxy</a> (planned, coming soon)</li>
480482
</ul>
481483
<h2 id="supported-storage-providers">Supported storage providers</h2>
482-
<p>Enseada abstracts the underlying storage provider with an agnostic engine based on <a href="https://github.com/chartmuseum/storage">ChartMuseum&rsquo;s library</a>
483-
See <a href="#configuration">Configuration</a> for how to setup the storage layer.</p>
484-
<p>At the moment, only these providers are supported:</p>
484+
<p>Enseada abstracts the underlying storage provider with a custom storage engine tailored for its use cases.</p>
485+
<p>At the moment, the following providers are supported:</p>
485486
<ul>
486-
<li>Local disk</li>
487+
<li>CouchDB File Attachments</li>
487488
<li>S3 compatible (AWS S3, Minio, DigitalOcean Spaces, Scaleway Object Storage, Ceph, etc)</li>
488-
<li>Google Cloud Storage</li>
489489
</ul>
490-
<p>Local disk is only supported in single-node mode. To support <a href="#cluster-mode">cluster mode</a> use an object storage provider.</p>
491-
<h2 id="cluster-mode">Cluster mode</h2>
492-
<p>Coming soon</p>
493490
</div>
494491
</article>
495492
</div>

categories/index.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<meta name="twitter:image" content="">
2727
<meta name="author" content="Enseada">
2828

29-
<meta name="generator" content="Hugo 0.63.2" />
29+
<meta name="generator" content="Hugo 0.65.3" />
3030

3131
<title>Categories &middot; Enseada</title>
3232

@@ -375,7 +375,7 @@
375375
align-self: stretch !important; }
376376
</style>
377377

378-
<link href="/style.min.a3636f61285a533daad479f35324a9957d578abc7b90e33f92123377123a455b.css" rel="stylesheet">
378+
<link href="/style.min.ccd0052a7c50e26cdf9a5578b444b59d28dd6db2b0038eb0ffbc1992424bf0e6.css" rel="stylesheet">
379379
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
380380
<link rel="icon" sizes="16x16 32x32" type="image/x-icon" href="/favicon.ico">
381381
<link rel="icon" href="/favicon.png">
@@ -497,6 +497,7 @@ <h5>Enseada is built to host multiple package formats</h5>
497497
<a target="_blank" href="/about#supported-package-repositories" class="badge badge-pill badge-warning">NPM</a>
498498
<a target="_blank" href="/about#supported-package-repositories" class="badge badge-pill badge-info">Docker</a>
499499
<a target="_blank" href="/about#supported-package-repositories" class="badge badge-pill badge-danger">RubyGems</a>
500+
<a target="_blank" href="/about#supported-package-repositories" class="badge badge-pill badge-primary">and more</a>
500501
</div>
501502
</div>
502503
</div>
@@ -515,7 +516,7 @@ <h4>Built for the Cloud</h4>
515516
<div class="col text-center">
516517
<h5>Enseada is built on distributed technologies to achieve high availability and easy horizontal scaling</h5>
517518
<p>
518-
Written in <a target="_blank" href="https://golang.org">Go</a>
519+
Written in <a target="_blank" href="https://rust-lang.org">Rust</a>
519520
and backed by a <a target="_blank" href="https://couchdb.apache.org">CouchDB</a> database, Enseada is natively distributed and fault-tolerant, reaching high
520521
degrees of reliability and security. The storage engine is compatible with many object storage providers to efficiently store your
521522
packages in the Cloud.

index.html

+7-6
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,22 @@
1313
<meta name="apple-mobile-web-app-capable" content="yes">
1414
<meta name="apple-mobile-web-app-status-bar-style" content="black">
1515
<meta name="description" content="A Cloud native multi-package registry">
16-
<meta property="og:title" content="Enseada &amp;middot; Enseada">
16+
<meta property="og:title" content="Enseada">
1717
<meta property="og:url" content="/">
1818
<meta property="og:description" content="A Cloud native multi-package registry">
1919
<meta property="og:site_name" content="Enseada">
2020
<meta property="og:type" content="website">
2121
<meta name="twitter:card" content="summary_large_image">
22-
<meta name="twitter:title" content="Enseada &amp;middot; Enseada" />
22+
<meta name="twitter:title" content="Enseada" />
2323
<meta name="twitter:description" content="A Cloud native multi-package registry">
2424
<meta name="twitter:url" content="/" />
2525
<meta property="og:image" content="">
2626
<meta name="twitter:image" content="">
2727
<meta name="author" content="Enseada">
2828

29-
<meta name="generator" content="Hugo 0.63.2" />
29+
<meta name="generator" content="Hugo 0.65.3" />
3030

31-
<title>Enseada &middot; Enseada</title>
31+
<title>Enseada</title>
3232

3333
<!-- Theme Styles -->
3434
<style>
@@ -375,7 +375,7 @@
375375
align-self: stretch !important; }
376376
</style>
377377

378-
<link href="/style.min.a3636f61285a533daad479f35324a9957d578abc7b90e33f92123377123a455b.css" rel="stylesheet">
378+
<link href="/style.min.ccd0052a7c50e26cdf9a5578b444b59d28dd6db2b0038eb0ffbc1992424bf0e6.css" rel="stylesheet">
379379
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
380380
<link rel="icon" sizes="16x16 32x32" type="image/x-icon" href="/favicon.ico">
381381
<link rel="icon" href="/favicon.png">
@@ -497,6 +497,7 @@ <h5>Enseada is built to host multiple package formats</h5>
497497
<a target="_blank" href="/about#supported-package-repositories" class="badge badge-pill badge-warning">NPM</a>
498498
<a target="_blank" href="/about#supported-package-repositories" class="badge badge-pill badge-info">Docker</a>
499499
<a target="_blank" href="/about#supported-package-repositories" class="badge badge-pill badge-danger">RubyGems</a>
500+
<a target="_blank" href="/about#supported-package-repositories" class="badge badge-pill badge-primary">and more</a>
500501
</div>
501502
</div>
502503
</div>
@@ -515,7 +516,7 @@ <h4>Built for the Cloud</h4>
515516
<div class="col text-center">
516517
<h5>Enseada is built on distributed technologies to achieve high availability and easy horizontal scaling</h5>
517518
<p>
518-
Written in <a target="_blank" href="https://golang.org">Go</a>
519+
Written in <a target="_blank" href="https://rust-lang.org">Rust</a>
519520
and backed by a <a target="_blank" href="https://couchdb.apache.org">CouchDB</a> database, Enseada is natively distributed and fault-tolerant, reaching high
520521
degrees of reliability and security. The storage engine is compatible with many object storage providers to efficiently store your
521522
packages in the Cloud.

index.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[{"categories":null,"contents":"A Cloud native multi-package registry.\nEnseada is a modern, fast and scalable package registry, designed from the ground up to run in elastic, container-based environments and to be highly available and distributed.\n It leverages scalability by using natively distributed technologies\nThe registry itself is written in Go, a statically typed and extremely fast programming language very popular in Cloud native applications.\nCouchDB is used as the primary datastore, containing information about repositories, users and access control. CouchDB is a web-native database written in Erlang and based on web technologies like HTTP and JSON.\nAs far as storage is concerned, both local disks an object storage services are supported altough the latter are strongly recommended for production deployments.\nSecurity first Enseada aims at providing a small, yet complete set of feature for managing software packages. Security is a priority concern, so an advanced policy engine provides the capabilities to define fine grained permissions over repositories and packages. From human users to automated service accounts, every access to the system is controlled, filtered and logged. A fully compliant OAuth 2 implementation allows integration with third party systems with ease.\nManagement API A set of Twirp APIs allows to programmatically interact with Enseada and its resources. Check the documentation for more information.\nManagement UI The same set of functionalities exposed in the API is available as a built-in web GUI. Check the documentation for more information.\nSupported package repositories Enseada is a multi-package registry, meaning it can support a large number of package formats and registry APIs.\nAt the moment, the following formats are supported:\n Maven 2 / 3 NPM (planned, coming soon) Docker (planned, coming soon) RubyGems (planned, coming soon) Supported storage providers Enseada abstracts the underlying storage provider with an agnostic engine based on ChartMuseum\u0026rsquo;s library See Configuration for how to setup the storage layer.\nAt the moment, only these providers are supported:\n Local disk S3 compatible (AWS S3, Minio, DigitalOcean Spaces, Scaleway Object Storage, Ceph, etc) Google Cloud Storage Local disk is only supported in single-node mode. To support cluster mode use an object storage provider.\nCluster mode Coming soon\n","permalink":"/about/","tags":null,"title":"About Enseada"},{"categories":null,"contents":null,"permalink":"/","tags":null,"title":"Enseada"},{"categories":null,"contents":null,"permalink":"/","tags":null,"title":"Enseada"},{"categories":null,"contents":null,"permalink":"/categories/","tags":null,"title":"Categories"},{"categories":null,"contents":null,"permalink":"/tags/","tags":null,"title":"Tags"}]
1+
[{"categories":null,"contents":"A Cloud native multi-package registry.\nEnseada is a modern, fast and scalable package registry, designed from the ground up to run in elastic, container-based environments and to be highly available and distributed.\n It leverages scalability by using natively distributed technologies\nThe registry itself is written in Rust, a statically typed and extremely fast programming language built for correctness and safety.\nCouchDB is used as the primary datastore, containing information about repositories, users and access control. CouchDB is a web-native database written in Erlang and based on web technologies like HTTP and JSON.\nPackages are can be stored in CouchDB itself, as file attachments, or in distributed object storage services like Amazon S3. The latter are recommended for production usage.\nSecurity first Enseada aims at providing a small, yet complete set of feature for managing software packages. Security is a priority concern, so an advanced policy engine provides the capabilities to define fine grained permissions over repositories and packages. From human users to automated service accounts, every access to the system is controlled, filtered and logged. A fully compliant OAuth 2 implementation allows integration with third party systems with ease.\nManagement API A set of RESTful APIs allows to programmatically interact with Enseada and its resources. Check the documentation for more information.\nManagement UI The same set of functionalities exposed in the API is available as a built-in web GUI. Check the documentation for more information.\nSupported package repositories Enseada is a multi-package registry, meaning it can support a large number of package formats and registry APIs.\nAt the moment, the following formats are supported:\n Docker Maven 2/3 NPM (planned, coming soon) RubyGems (planned, coming soon) Rust crates (planned, coming soon) Go module proxy (planned, coming soon) Supported storage providers Enseada abstracts the underlying storage provider with a custom storage engine tailored for its use cases.\nAt the moment, the following providers are supported:\n CouchDB File Attachments S3 compatible (AWS S3, Minio, DigitalOcean Spaces, Scaleway Object Storage, Ceph, etc) ","permalink":"/about/","tags":null,"title":"About Enseada"},{"categories":null,"contents":null,"permalink":"/","tags":null,"title":"Enseada"},{"categories":null,"contents":null,"permalink":"/","tags":null,"title":"Enseada"},{"categories":null,"contents":null,"permalink":"/categories/","tags":null,"title":"Categories"},{"categories":null,"contents":null,"permalink":"/tags/","tags":null,"title":"Tags"}]

0 commit comments

Comments
 (0)