├── .gitignore ├── LICENSE ├── README.rst ├── TODO.rst ├── doc ├── index.rst └── topics │ ├── reference │ ├── onf.rst │ └── orf.rst │ ├── tutorials │ ├── git.rst │ ├── using-alerts.rst │ ├── validating-recipe.rst │ └── walkthrough.rst │ └── writing_recipes.rst ├── examples ├── banana-bread.yaml └── orf-sample-1.yaml └── schema.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/README.rst -------------------------------------------------------------------------------- /TODO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/TODO.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/topics/reference/onf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/doc/topics/reference/onf.rst -------------------------------------------------------------------------------- /doc/topics/reference/orf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/doc/topics/reference/orf.rst -------------------------------------------------------------------------------- /doc/topics/tutorials/git.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/doc/topics/tutorials/git.rst -------------------------------------------------------------------------------- /doc/topics/tutorials/using-alerts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/doc/topics/tutorials/using-alerts.rst -------------------------------------------------------------------------------- /doc/topics/tutorials/validating-recipe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/doc/topics/tutorials/validating-recipe.rst -------------------------------------------------------------------------------- /doc/topics/tutorials/walkthrough.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/doc/topics/tutorials/walkthrough.rst -------------------------------------------------------------------------------- /doc/topics/writing_recipes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/doc/topics/writing_recipes.rst -------------------------------------------------------------------------------- /examples/banana-bread.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/examples/banana-bread.yaml -------------------------------------------------------------------------------- /examples/orf-sample-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/examples/orf-sample-1.yaml -------------------------------------------------------------------------------- /schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techhat/openrecipeformat/HEAD/schema.json --------------------------------------------------------------------------------