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
commit 66035b142fb69d36e18871c7833b9e929c29350a Author: Mingshen Sun <[email protected]> AuthorDate: Wed Mar 24 13:41:46 2021 -0700 Add community and powered-by pages --- site/.vuepress/config.js | 1 + site/community.md | 51 ++++++++++++++++++++++++++++++++++++++++++++++ site/powered-by.md | 53 ++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 105 insertions(+) diff --git a/site/.vuepress/config.js b/site/.vuepress/config.js index c69dbbd..67a8170 100644 --- a/site/.vuepress/config.js +++ b/site/.vuepress/config.js @@ -15,6 +15,7 @@ module.exports = { dateFormat: 'MMMM D, YYYY', nav: [ { text: 'ABOUT', link: '/' }, + { text: 'POWERED BY', link: '/powered-by/' }, { text: 'COMMUNITY', link: '/community/' }, { text: 'DOWNLOAD', link: '/download/' }, { text: 'CONTRIBUTORS', link: '/contributors/' }, diff --git a/site/community.md b/site/community.md new file mode 100644 index 0000000..3c0da86 --- /dev/null +++ b/site/community.md @@ -0,0 +1,51 @@ +--- +permalink: /community +sidebar: false +--- + +# Community + +Welcome to the Teaclave community. Here are several ways that you can get involved. + +## Mailing Lists + +We have a few mailing lists hosted by Apache: + +- **Developer mailing list**: A list for discussion on Teaclave development. To + subscribe, send an email to + [[email protected]](mailto:[email protected]). + Once subscribed, you can have discussion on Teaclave development by mailing to + [[email protected]](mailto:[email protected]). Archives are + available [here](https://lists.apache.org/[email protected]). +- **Commit mailing list**: A list to track Teaclave commits. To subscribe, send + an email to + [[email protected]](mailto:[email protected]). + Archives are available + [here](https://lists.apache.org/[email protected]). + +To unsubscribe from any of these, just change the word "subscribe" to +"unsubscribe" in the email addresses above. + +## GitHub Issues + +You can also ask questions, propose features, and report bugs in Teaclave's +[GitHub issues](https://github.com/apache/incubator-teaclave/issues). Watch the +project on GitHub to receive latest updates. + +## Twitter + +Follow [@ApacheTeaclave](https://twitter.com/ApacheTeaclave). + +## Contributing + +Teaclave is open source in [The Apache Way](https://www.apache.org/theapacheway/), +we aim to create a project that is maintained and owned by the community. All +kinds of contributions are welcome. Read this [document](CONTRIBUTING.md) to +learn more about how to contribute. Huge thanks to our [contributors](CONTRIBUTORS.md). + +## Reporting a Vulnerability + +We take a very active stance in eliminating security problems in Teaclave. We +strongly encourage folks to report such problems to our private mailing list +first ([[email protected]](mailto:[email protected])), +before disclosing them in a public forum. diff --git a/site/powered-by.md b/site/powered-by.md new file mode 100644 index 0000000..182dcb6 --- /dev/null +++ b/site/powered-by.md @@ -0,0 +1,53 @@ +--- +permalink: /powered-by +sidebar: false +--- + +# Powered By + +Apache Teaclave (including the FaaS platform, SGX SDK, and TrustZone SDK) is +being used and actively contributed by developers from many organizations and +other open source projects. This is a community maintained list of organizations +and projects using and contributing to Teaclave in alphabetical order. + +## Organizations + + - [Alibaba](https://www.alibabagroup.com/) + - [Ant Group](https://www.antgroup.com/en) + - [Baidu](https://www.baidu.com/) + - [ByteDance](https://www.bytedance.com/) + - [Enigma](https://www.enigma.co/) + - [LayerX](https://layerx.co.jp/) + +## Projects + + - [Advanca](https://github.com/advanca/advanca): A privacy-preserving + general-purpose compute/storage infrastructure for Dapps. + - [Anonify](https://github.com/LayerXcom/anonify): A blockchain-agnostic + execution environment with privacy and auditability based on TEE. + - [Enigma Core](https://github.com/enigmampc/enigma-core): Enigma Core + library. The domain: Trusted and Untrusted App in Rust. + - [Crypto.com Chain](https://github.com/crypto-com/chain): Alpha version + prototype of Crypto.com Chain. + - [Occlum](https://github.com/occlum/occlum): Occlum is a memory-safe, + multi-process library OS for Intel SGX. + - [Phala Network](https://github.com/Phala-Network/phala-blockchain): + A TEE-Blockchain hybrid architecture implementing Confidential Contract on + Polkadot. + - [SafeTrace](https://github.com/enigmampc/SafeTrace): Privacy preserving + voluntary COVID-19 self-reporting platform for contact tracing. + - [Secret Network](https://github.com/enigmampc/SecretNetwork): A + blockchain-based, open-source protocol that lets anyone perform computations + on encrypted data, bringing privacy to smart contracts and public + blockchains. + - [substraTEE](https://github.com/scs/substraTEE): Trusted Off-Chain Compute + Framework for substrate blockchains. + - [Veracruz](https://github.com/veracruz-project/veracruz): Veracruz is a + framework for defining and deploying collaborative, privacy-preserving + computations amongst a group of mutually mistrusting individuals. + +::: tip Want to appear on this page? +Submit a [pull request](https://github.com/apache/incubator-teaclave-website/edit/master/site/powered-by.md) +or send a quick description of your organization and usage +to the [mailing list](/community/#mailing-lists) and we'll add you. +::: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
