├── .travis.yml ├── LICENSE ├── README.md ├── boot ├── Dockerfile ├── bionitio-boot-test.sh └── bionitio-boot.sh ├── githelper └── bionitio-git.sh ├── license_options ├── Apache-2.0 ├── BSD-2-Clause ├── BSD-3-Clause ├── GPL-2.0 ├── GPL-3.0 └── MIT └── readme_template ├── README.md ├── TEMPLATE.md └── bionitio-readme.sh /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/README.md -------------------------------------------------------------------------------- /boot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/boot/Dockerfile -------------------------------------------------------------------------------- /boot/bionitio-boot-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/boot/bionitio-boot-test.sh -------------------------------------------------------------------------------- /boot/bionitio-boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/boot/bionitio-boot.sh -------------------------------------------------------------------------------- /githelper/bionitio-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/githelper/bionitio-git.sh -------------------------------------------------------------------------------- /license_options/Apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/license_options/Apache-2.0 -------------------------------------------------------------------------------- /license_options/BSD-2-Clause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/license_options/BSD-2-Clause -------------------------------------------------------------------------------- /license_options/BSD-3-Clause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/license_options/BSD-3-Clause -------------------------------------------------------------------------------- /license_options/GPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/license_options/GPL-2.0 -------------------------------------------------------------------------------- /license_options/GPL-3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/license_options/GPL-3.0 -------------------------------------------------------------------------------- /license_options/MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/license_options/MIT -------------------------------------------------------------------------------- /readme_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/readme_template/README.md -------------------------------------------------------------------------------- /readme_template/TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/readme_template/TEMPLATE.md -------------------------------------------------------------------------------- /readme_template/bionitio-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionitio-team/bionitio/HEAD/readme_template/bionitio-readme.sh --------------------------------------------------------------------------------