Skip to content

Commit b3e7fa0

Browse files
committed
Merge branch 'hassio' into current
2 parents e9b2dc3 + a183260 commit b3e7fa0

File tree

5 files changed

+125
-7
lines changed

5 files changed

+125
-7
lines changed

sass/custom/_paulus.scss

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,16 +118,21 @@ $primary-color: #049cdb;
118118
}
119119
}
120120

121-
.founder-vision {
121+
.highlight-blog-post {
122+
font-size: 2.0rem;
123+
line-height: 1.15;
124+
padding: 15px;
122125
display: block;
123126
text-decoration: none;
124127
color: white;
125-
padding: 15px;
126-
font-size: 2.25rem;
127-
line-height: 1.33333;
128128
transition: background-color .5s;
129129
background-color: #038FC7;
130130

131+
&.large {
132+
font-size: 2.25rem;
133+
line-height: 1.33333;
134+
}
135+
131136
&:hover {
132137
background-color: lighten(#038FC7, 10%);
133138
}
@@ -406,7 +411,8 @@ p.note {
406411
}
407412

408413
.edit-github {
409-
text-align: right;
414+
float: right;
415+
margin-left: 8px;
410416
margin-bottom: 8px;
411417
font-size: .8em;
412418
}
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
---
2+
layout: post
3+
title: "Introducing Hass.io"
4+
description: "The ultimate home automation hub has arrived."
5+
date: 2017-07-25 00:02:05 +0000
6+
date_formatted: "July 25, 2017"
7+
author: Paulus Schoutsen
8+
author_twitter: balloob
9+
comments: true
10+
categories: Announcements
11+
og_image: /images/hassio/screenshots/dashboard.png
12+
---
13+
14+
**TL;DR:** Today we're introducing [Hass.io]. Hass.io is an operating system that will take care of installing and updating Home Assistant, is managed from the Home Assistant UI, allows creating/restoring snapshots of your configuration and can easily be extended using [Hass.io add-ons][addons].
15+
16+
----
17+
18+
Home Assistant is 2 months away from being 4 years old. In that time the Internet of Things has really taken off and we've seen many new devices and services. We saw the introduction of voice assistants like Google Home and new standards like Apple HomeKit.
19+
20+
Some things have been supported natively in Home Assistant, others have been integrated into Home Assistant via third party applications. The latter has caused an increased maintenance burden for people running Home Assistant at home.
21+
22+
So we decided to take a step back from day-to-day Home Assistant development and see if we could offer a solution that makes updating a breeze for our users. A solution that you can flash to your Raspberry Pi and no longer worry about. A solution that would still be local first and respect the user's privacy.
23+
24+
And this is how [Pascal Vizeli] came up with Hass.io, an operating system based on [ResinOS] and [Docker]. Hass.io will take care of installing and updating Home Assistant, is managed from the Home Assistant UI, allows taking/restoring snapshots of your configuration and can easily be extended using [Hass.io add-ons][addons].
25+
26+
<p class='img'>
27+
<img src='/images/hassio/screenshots/dashboard.png'>
28+
Hass.io dashboard
29+
</p>
30+
31+
To install add-ons, a user can browse the built-in add-on store and install, configure and update any available application. Want to turn your device into a Google Assistant or make your configuration accessible via Samba/Windows networking? Both are a couple of clicks away! ([Video demo - 38s, no audio][install-demo])
32+
33+
At launch we have included a couple of [built-in add-ons][addons] like [Google Assistant], [Let's Encrypt] and [Duck DNS]. Besides our internal add-ons, it is also possible to create and share your own add-on repositories. During our beta period we've already seen some great add-ons being shared: [Homebridge][olivierg], [InfluxDB][bestlibre], [HASS Configurator][danielperna] and [AppDaemon][vkorn].
34+
35+
As we strongly believe in the openness of technology, we are releasing Hass.io as [open source] under the Apache 2.0 license. That way any user can make sure that the code that runs in their homes is secure and safe.
36+
37+
- [Learn more about Hass.io][Hass.io]
38+
- [Install Hass.io][install]
39+
- [Available add-ons][addons]
40+
41+
<div class='videoWrapper'>
42+
<iframe width="560" height="315" src="https://www.youtube.com/embed/XWPluWcYRMI" frameborder="0" allowfullscreen></iframe>
43+
</div>
44+
45+
Hass.io has been built by [Pascal Vizeli], the UI has been made by [Paulus Schoutsen] and [BRUHAutomation] made the introduction video. Big thanks to [Resin.io] for building ResinOS and helping us get started with it. Also a big thanks to the community for early feedback, helping out with the documentation and add-on development ❤️
46+
47+
_Some frequently asked questions are answered in the read more section._
48+
49+
<!--more-->
50+
51+
#### {% linkable_title Do I need to use Hass.io to run Home Assistant? %}
52+
53+
Hass.io is optional. You can still run Home Assistant standalone.
54+
55+
#### {% linkable_title Which devices are supported at launch? %}
56+
57+
Initially we support the Raspberry Pi 1, 2, 3 and Intel NUC. Advanced users can also [install Hass.io on a Linux server][advanced-install].
58+
59+
#### {% linkable_title Can I install packages or scripts on the machine? %}
60+
61+
No, this is not possible as we're using stateless Docker containers. To install a package you'll have to write a local add-on that interacts with Home Assistant. See [our tutorial][run-local].
62+
63+
#### {% linkable_title Can I restore a snapshot on a different device? %}
64+
65+
Yes, any Hass.io snapshot can be restored on any device.
66+
67+
#### {% linkable_title The Hass.io configuration panel contains powerful tools. Why is there no security? %}
68+
69+
We have already implemented the backend and plan to release the UI soon.
70+
71+
#### {% linkable_title Is there a roadmap? %}
72+
73+
We use [Pivotal Tracker] to track things that are in progress and what we might work on.
74+
75+
[Hass.io]: /hassio
76+
[install]: /hassio/installation
77+
[Homebridge]: https://github.com/nfarina/homebridge
78+
[hb-hass]: https://github.com/home-assistant/homebridge-homeassistant
79+
[Pascal Vizeli]: https://github.com/pvizeli/
80+
[Paulus Schoutsen]: https://github.com/balloob/
81+
[ResinOS]: https://resinos.io/
82+
[Docker]: https://www.docker.com/
83+
[addons]: /addons/
84+
[bestlibre]: https://community.home-assistant.io/t/repository-bestlibre-addons-repository/18037
85+
[danielperna]: https://community.home-assistant.io/t/repository-hass-configurator/17838
86+
[olivierg]: https://community.home-assistant.io/t/repository-homebridge-add-on/18569
87+
[vkorn]: https://community.home-assistant.io/t/repository-few-addons/20659
88+
[install-demo]: https://youtu.be/NfyavpAg4as
89+
[BRUHAutomation]: https://www.youtube.com/channel/UCLecVrux63S6aYiErxdiy4w
90+
[open source]: https://github.com/home-assistant/hassio
91+
[Google Assistant]: /addons/google_assistant/
92+
[Let's Encrypt]: /addons/lets_encrypt/
93+
[Duck DNS]: /addons/duckdns/
94+
[advanced-install]: /hassio/installation/#alternative-install-on-generic-linux-server
95+
[Pivotal Tracker]: https://www.pivotaltracker.com/n/projects/2020851
96+
[run-local]: /hassio/run_local/
97+
[Resin.io]: https://resin.io

source/getting-started/index.markdown

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ footer: true
1212
You will need to install Home Assistant before we can get started. You can install Home Assistant on your computer or you can turn a Raspberry Pi into a dedicated Home Assistant hub.
1313

1414
<div class="text-center hass-option-cards" markdown="0">
15+
<a class='option-card' href='/hassio/'>
16+
<div class='img-container'>
17+
<img src='/images/supported_brands/home-assistant.png' />
18+
</div>
19+
<div class='title'>Install Hass.io on your Raspberry Pi 3</div>
20+
</a>
1521
<a class='option-card' href='/docs/hassbian/installation/'>
1622
<div class='img-container'>
1723
<img src='/images/supported_brands/raspberry-pi.png' />
@@ -25,6 +31,7 @@ You will need to install Home Assistant before we can get started. You can insta
2531
<div class='title'>Install Home Assistant on your computer</div>
2632
</a>
2733
</div>
34+
<br>
2835

2936
For alternative installation methods please take a look at the [installation documentation](/docs/installation/).
3037

source/hassio/index.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ The advantages of using Hass.io:
2424
- Easily install many popular add-ons including [Google Assistant], encryption via [Let's Encrypt] and dynamic DNS via [Duck DNS].<br><br>[Browse available add-ons &raquo;][all]<br><br>
2525
- Active community that is helpful and sharing add-ons including AppDaemon, Homebridge and InfluxDB.<br><br>[Browse the forums &raquo;][forums]<br>[Join the Hass.io chat &raquo;][chat]<br>[Browse community add-on repositories &raquo;][comm-add-ons]<br><br>
2626

27+
<div class='videoWrapper'>
28+
<iframe width="560" height="315" src="https://www.youtube.com/embed/XWPluWcYRMI" frameborder="0" allowfullscreen></iframe>
29+
</div>
30+
2731
<p class='img'>
2832
<img src='/images/hassio/screenshots/dashboard.png'>
2933
Hass.io dashboard

source/index.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ <h1>Join The Community</h1>
3434
<a href='https://discord.gg/c5DvZ4e'>Chat</a>
3535
</div>
3636
</div>
37+
38+
<a class='material-card highlight-blog-post' href='/blog/2016/01/19/perfect-home-automation/'>
39+
Read our founder's vision for the perfect home automation <i class="icon-arrow-right"></i>
40+
</a>
3741
</div>
3842
<div class="grid__item two-thirds lap-two-thirds palm-one-whole">
3943
<div class='recent-posts material-card text'>
@@ -47,8 +51,8 @@ <h1>Recent Blog Posts</h1>
4751
{% endfor %}
4852
</div>
4953

50-
<a class='material-card founder-vision' href='/blog/2016/01/19/perfect-home-automation/'>
51-
Read our founder's vision for the perfect home automation <i class="icon-arrow-right"></i>
54+
<a class='material-card highlight-blog-post large' href='/blog/2017/07/25/introducing-hassio/'>
55+
Learn how Hass.io can turn your Raspberry Pi into the ultimate home automation hub <i class="icon-arrow-right"></i>
5256
</a>
5357

5458
<a class='material-card shirt-promo' href='/blog/2017/02/22/home-assistant-tshirts-have-arrived/'>

0 commit comments

Comments
 (0)