├── .github ├── CODEOWNERS └── settings.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── content ├── 00-toc.md ├── 01-introduction.md ├── 02-contributions-to-existing-projects.md ├── 03-starting-oss-projects.md ├── 04-references.md └── 05-appendix.md ├── img ├── LaunchinOSSProject.PNG ├── OSS-lifecycle.png ├── contrbutions-all-models.png └── template-contribs.png └── tools └── generate_toc.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/README.md -------------------------------------------------------------------------------- /content/00-toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/content/00-toc.md -------------------------------------------------------------------------------- /content/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/content/01-introduction.md -------------------------------------------------------------------------------- /content/02-contributions-to-existing-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/content/02-contributions-to-existing-projects.md -------------------------------------------------------------------------------- /content/03-starting-oss-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/content/03-starting-oss-projects.md -------------------------------------------------------------------------------- /content/04-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/content/04-references.md -------------------------------------------------------------------------------- /content/05-appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/content/05-appendix.md -------------------------------------------------------------------------------- /img/LaunchinOSSProject.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/img/LaunchinOSSProject.PNG -------------------------------------------------------------------------------- /img/OSS-lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/img/OSS-lifecycle.png -------------------------------------------------------------------------------- /img/contrbutions-all-models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/img/contrbutions-all-models.png -------------------------------------------------------------------------------- /img/template-contribs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/img/template-contribs.png -------------------------------------------------------------------------------- /tools/generate_toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todogroup/outbound-oss/HEAD/tools/generate_toc.py --------------------------------------------------------------------------------