From 8e8e657f3236d2c68add53faed9f5618064182f2 Mon Sep 17 00:00:00 2001 From: Paul Hobbs <38822766+SolidElectronics@users.noreply.github.com> Date: Tue, 1 Oct 2019 16:13:39 -0400 Subject: [PATCH] Update creating_component_index.md (#325) Add 'integration' argument to script.scaffold command --- docs/creating_component_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/creating_component_index.md b/docs/creating_component_index.md index 76b100a1..1fe49adf 100644 --- a/docs/creating_component_index.md +++ b/docs/creating_component_index.md @@ -5,7 +5,7 @@ title: "Creating your first integration" Alright, you learned about the [manifest](creating_integration_manifest.md), so it's time to write your first code for your integration. AWESOME. Don't worry, we've tried hard to keep it as easy as possible. From a Home Assistant development environment, type the following and follow the instructions: ```python -python3 -m script.scaffold +python3 -m script.scaffold integration ``` This will set you up with everything that you need to build an integration that is able to be set up via the user interface. More extensive examples of integrations are available from [our example repository](https://github.com/home-assistant/example-custom-config/tree/master/custom_components/).