Update creating_component_index.md (#325)

Add 'integration' argument to script.scaffold command
This commit is contained in:
Paul Hobbs 2019-10-01 16:13:39 -04:00 committed by Paulus Schoutsen
parent c0da227184
commit 8e8e657f32

View File

@ -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/).