Site updated at 2015-09-24 16:08:02 UTC

This commit is contained in:
Paulus Schoutsen 2015-09-24 09:08:02 -07:00
parent cb366470d9
commit 17b840e64b
26 changed files with 580 additions and 425 deletions

View file

@ -185,7 +185,7 @@ components within Home Assistant.</p>
<h3><a class='title-link' name='the-full-picture' href='#the-full-picture'></a> The full picture</h3>
<p>When we put all the different pieces of Home Assistant together we see that we match pretty close to the initial sketched home automation overview. The smart home AI is not implemented yet and therefor omitted from the following picture.</p>
<p>When we put all the different pieces of Home Assistant together we see that we match pretty close to the initial sketched home automation overview. The smart home AI is not implemented yet and therefore omitted from the following picture.</p>
<p class='img'>
<a href='/images/architecture/ha_full_architecture.png'>

View file

@ -121,14 +121,15 @@ components. It uses <a href="https://www.python.org/">Python 3</a> for the backe
<h3><a class='title-link' name='starting-development' href='#starting-development'></a> Starting development</h3>
<p>You will need to setup a development environment if you want to start developing a new feature or
component for Home Assistant.</p>
component for Home Assistant perform theses steps</p>
<ol>
<li>Clone the Home Assistant repository:<br>
<code>git clone https://github.com/balloob/home-assistant.git</code></li>
<li>Setup your computer for development:<br>
<code>python3 setup.py develop</code></li>
</ol>
<figure class='code'><figcaption><span></span></figcaption><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
<span class='line-number'>2</span>
<span class='line-number'>3</span>
</pre></td><td class='code'><pre><code class='bash'><span class='line'>git clone https://github.com/balloob/home-assistant.git
</span><span class='line'><span class="nb">cd </span>home-assistant
</span><span class='line'>script/setup
</span></code></pre></td></tr></table></div></figure>
<p>After following these steps, running <code>hass</code> will invoke your local installation.</p>