You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@teaclave.apache.org by ms...@apache.org on 2020/05/14 05:44:30 UTC

[incubator-teaclave-website] branch master updated: Start to use vuexpress

This is an automated email from the ASF dual-hosted git repository.

mssun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 649d08c  Start to use vuexpress
649d08c is described below

commit 649d08c79cf57f80519d4aef2812c2503082278f
Author: Mingshen Sun <bo...@mssun.me>
AuthorDate: Wed May 13 22:34:59 2020 -0700

    Start to use vuexpress
---
 .vuepress/config.js         | 10 ++++++++++
 .vuepress/styles/index.styl |  3 +++
 index.md                    | 32 ++++++++++++++++++++++++++++++++
 3 files changed, 45 insertions(+)

diff --git a/.vuepress/config.js b/.vuepress/config.js
new file mode 100644
index 0000000..0a48a78
--- /dev/null
+++ b/.vuepress/config.js
@@ -0,0 +1,10 @@
+module.exports = {
+    title: 'Apache Teaclave',
+    description: 'Teaclave is an open source universal secure computing platform, making computation on privacy-sensitive data safe and simple.',
+    themeConfig: {
+        search: false,
+        nav: [
+            { text: 'GitHub', link: 'https://github.com/apache/incubator-teaclave' }
+        ]
+    },
+}
diff --git a/.vuepress/styles/index.styl b/.vuepress/styles/index.styl
new file mode 100644
index 0000000..e1ab8a3
--- /dev/null
+++ b/.vuepress/styles/index.styl
@@ -0,0 +1,3 @@
+.footer {
+  font-size: 12px;
+}
diff --git a/index.md b/index.md
new file mode 100644
index 0000000..93e3eac
--- /dev/null
+++ b/index.md
@@ -0,0 +1,32 @@
+---
+home: true
+heroText: Apache Teaclave (incubating)
+tagline:  an open source universal secure computing platform, making computation on privacy-sensitive data safe and simple
+footer: "Apache Teaclave is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that t [...]
+---
+
+Teaclave is an open source universal secure computing platform, making computation on privacy-sensitive data safe and simple.
+
+## Highlights
+
+- **Security**:
+  Teaclave adopts multiple security technologies to enable secure computing, in
+  particular, Teaclave uses Intel SGX to serve the most security-sensitive tasks
+  with *hardware-based isolation*, *memory encryption* and *attestation*.
+  Also, Teaclave is written in Rust to prevent *memory-safety* issues.
+- **Functionality**:
+  Teaclave is provided as a *function-as-a-service platform*. With many built-in
+  functions, it supports tasks like machine learning, private set intersection,
+  crypto computation, etc. In addition, developers can also deploy and execute
+  Python scripts in Teaclave. More importantly, unlike traditional FaaS,
+  Teaclave supports both general secure computing tasks and *flexible
+  single- and multi-party secure computation*.
+- **Usability**:
+  Teaclave builds its components in containers, therefore, it supports
+  deployment both locally and within cloud infrastructures. Teaclave also
+  provides convenient endpoint APIs, client SDKs and command line tools.
+- **Modularity**:
+  Components in Teaclave are designed in modular, and some like remote
+  attestation can be easily embedded in other projects. In addition, Teaclave
+  SGX SDK can also be used separately to write standalone SGX enclaves for other
+  purposes.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@teaclave.apache.org
For additional commands, e-mail: commits-help@teaclave.apache.org