From 7383a26569dc698c895ce909ea76bd34f202c8f3 Mon Sep 17 00:00:00 2001 From: badele Date: Wed, 23 Sep 2015 22:02:24 +0200 Subject: [PATCH] New development steps --- source/developers/index.markdown | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/source/developers/index.markdown b/source/developers/index.markdown index aee7df26b2f..8ac3adc0a19 100644 --- a/source/developers/index.markdown +++ b/source/developers/index.markdown @@ -22,12 +22,14 @@ Home Assistant is open-source and MIT licensed. The source can be found here: ### {% linkable_title Starting development %} You will need to setup a development environment if you want to start developing a new feature or -component for Home Assistant. +component for Home Assistant perform theses steps - 1. Clone the Home Assistant repository:
- `git clone https://github.com/balloob/home-assistant.git` - 2. Setup your computer for development:
- `python3 setup.py develop` +```bash +cd your_root_folder_project +git clone https://github.com/balloob/home-assistant.git +cd your_root_folder_project/home-assistant +script/setup +``` After following these steps, running `hass` will invoke your local installation.