mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-28 13:57:04 +00:00

* 🔥 Removes octopress.js * 🔥 Removes use of root_url var * 🔥 Removes Octopress generator reference from feed * 🔥 Removes delicious support * 🔥 Removes support for Pinboard * 🔥 Removes support for Disqus * 🔥 Removes support for Google Plus * ↩️ Migrate custom after_footer to default template * ↩️ Migrate custom footer to default template * ↩️ Migrate custom header to default template * 🔥 Removes unused template files * 🚀 Places time to read directly in post template * 🚀 Removes unneeded capture from archive_post.html template * 🔥 🚀 Removes unused, but heaving sorting call in component page * 🚀 Merged javascripts into a single file * 🔥 Removes more uses of root_url * 🚀 Removal of unneeded captures from head * 🔥 🚀 Removal of expensive liquid HTML compressor * 🔥 Removes unneeded templates * 🚀 Replaces kramdown with GitHub's CommonMark 🚀 * 💄 Adds Prism code syntax highlighting * ✨ Adds support for redirect in Netlify * ↩️ 🔥 Let Netlify handle all developer doc redirects * ✏️ Fixes typo in redirects file: Netify -> Netlify * 🔥 Removes unused .themes folder * 🔥 Removes unused aside.html template * 🔥 Removes Disqus config leftover * 🔥 Removes rouge highlighter config * 🔥 Removes Octopress 🎉 * 💄 Adjust code block font size and adds soft wraps * 💄 Adds styling for inline code blocks * 💄 Improve styling of note/warning/info boxes + div support * 🔨 Rewrites all note/warning/info boxes
49 lines
1.8 KiB
Markdown
49 lines
1.8 KiB
Markdown
---
|
|
title: "Cookbook"
|
|
description: "Community maintained list of different ways to use Home Assistant."
|
|
sidebar: false
|
|
regenerate: true
|
|
hide_github_edit: true
|
|
---
|
|
|
|
This is a community curated list of different ways to use Home Assistant. Most of these examples are using the [automation] integration and other built-in [automation related][sec-automation] and [organization] integrations available.
|
|
|
|
For [`python_script:` examples](/components/python_script/) visit the [Scripts section](https://community.home-assistant.io/c/projects/scripts) in our forum.
|
|
|
|
[automation]: /getting-started/automation/
|
|
[sec-automation]: /components/#automation
|
|
[organization]: /components/#organization
|
|
|
|
New recipes can be added via the [home-assistant.io repository](https://github.com/home-assistant/home-assistant.github.io/tree/current/source/_cookbook).
|
|
|
|
<div class='note'>
|
|
|
|
A great place to find popular configurations is on this [GitHub search](https://github.com/search?q=topic%3Ahome-assistant-config&type=Repositories) for repositories with the `home-assistant-config` topic.
|
|
|
|
</div>
|
|
|
|
{% assign cookbook = site.cookbook | sort: 'title' %}
|
|
{% assign categories = cookbook | map: 'ha_category' | uniq | sort %}
|
|
|
|
{% for category in categories %}
|
|
### {{ category }}
|
|
|
|
{% if category == 'Automation Examples' %}
|
|
|
|
{% elsif category == 'Full configuration.yaml examples' %}
|
|
Some users keep a public scrubbed copy of their `configuration.yaml` to learn from.
|
|
{% elsif category == '' %}
|
|
|
|
{% endif %}
|
|
|
|
{% for recipe in cookbook %}
|
|
{% if recipe.ha_category == category %}
|
|
{% if recipe.ha_external_link %}
|
|
* [{{recipe.title}} <i class="icon-external-link"></i>]({{recipe.ha_external_link}})
|
|
{% else %}
|
|
* [{{recipe.title}}]({{recipe.url}})
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|