├── .github └── workflows │ └── CI.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── book.toml └── src ├── SUMMARY.md ├── best-practices-for-enterprise-open-source-governance.md ├── best-practices-for-open-source-ecosystems.md ├── community-rules-and-hidden-rules.md ├── enterprise-strategy-and-business-model.md ├── images ├── License-Header-Sample.png ├── Logo-Horizontal.png └── Logo.png ├── open-source-compliance-and-risk-managment.md ├── open-source-culture-and-awareness.md ├── open-source-ecosystem-build-and-best-practices.md ├── open-source-lifecycle-managment.md ├── open-source-security-and-risk-managment.md ├── open-source-strategy-and-tactics.md ├── open-source-usage-and-best-practices.md └── preface.md /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/book.toml -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/best-practices-for-enterprise-open-source-governance.md: -------------------------------------------------------------------------------- 1 | # 开源使用优秀实践分享 -------------------------------------------------------------------------------- /src/best-practices-for-open-source-ecosystems.md: -------------------------------------------------------------------------------- 1 | # 开源生态优秀实践分享 -------------------------------------------------------------------------------- /src/community-rules-and-hidden-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/community-rules-and-hidden-rules.md -------------------------------------------------------------------------------- /src/enterprise-strategy-and-business-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/enterprise-strategy-and-business-model.md -------------------------------------------------------------------------------- /src/images/License-Header-Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/images/License-Header-Sample.png -------------------------------------------------------------------------------- /src/images/Logo-Horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/images/Logo-Horizontal.png -------------------------------------------------------------------------------- /src/images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/images/Logo.png -------------------------------------------------------------------------------- /src/open-source-compliance-and-risk-managment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/open-source-compliance-and-risk-managment.md -------------------------------------------------------------------------------- /src/open-source-culture-and-awareness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/open-source-culture-and-awareness.md -------------------------------------------------------------------------------- /src/open-source-ecosystem-build-and-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/open-source-ecosystem-build-and-best-practices.md -------------------------------------------------------------------------------- /src/open-source-lifecycle-managment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/open-source-lifecycle-managment.md -------------------------------------------------------------------------------- /src/open-source-security-and-risk-managment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/open-source-security-and-risk-managment.md -------------------------------------------------------------------------------- /src/open-source-strategy-and-tactics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/open-source-strategy-and-tactics.md -------------------------------------------------------------------------------- /src/open-source-usage-and-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/open-source-usage-and-best-practices.md -------------------------------------------------------------------------------- /src/preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensource-rainforest/osr/HEAD/src/preface.md --------------------------------------------------------------------------------