📘 Home Assistant User documentation
 
 
 
 
 
Go to file
Teemu Rytilahti d6e4cbd017 Add climate platform for tplink 2024-06-22 18:07:42 +02:00
.devcontainer Disable the Ruby version manager (#31040) 2024-01-25 10:53:19 +01:00
.github build(deps): bump actions/checkout from 4.1.6 to 4.1.7 (#33247) 2024-06-13 08:53:13 +02:00
.vscode Add more context to the Traccar Server documentation (#31207) 2024-02-07 12:19:15 +01:00
plugins Optimize related include (#33104) 2024-06-06 17:26:25 +02:00
sass Fix video going out of flow on mobile (creating horizontal scrolling) (#29622) 2024-06-08 09:27:58 +02:00
source Add climate platform for tplink 2024-06-22 18:07:42 +02:00
.editorconfig Add EditorConfig file for Ruby files 2012-02-26 11:08:16 -08:00
.gitattributes Added .gitattributes file to keep CRLF's out of the codebase. 2013-03-06 01:29:40 +01:00
.gitignore Move the alert location (#18646) 2021-07-28 19:02:59 +02:00
.markdownlint.json Adds MarkdownLint configuration (#9725) 2019-06-29 14:35:45 +02:00
.nvmrc Update nodejs to 18x (#26746) 2023-03-27 20:10:27 +02:00
.powrc Adding .powrc to allow RVM to work when POW is updated to version 0.4.0 and beyond. 2012-06-08 13:58:52 -05:00
.remarkignore Enforce Markdown headers are incremental (#28158) 2023-07-10 17:02:21 +02:00
.remarkrc.js Enforce Markdown ordered list numbering (#28179) 2023-07-11 21:28:37 +02:00
.ruby-version Upgrade Ruby, Node, Jekyll, sass-embedded + devcontainer (#30538) 2023-12-28 14:40:03 +01:00
.textlintrc.json Revert "Remove JuiceNet integration" (#31785) 2024-03-07 18:13:10 +01:00
CLA.md ✏️ Tweak 2019-10-16 23:25:04 +02:00
CODEOWNERS 2024.6: Beta release notes 2024-05-29 18:38:37 +02:00
CODE_OF_CONDUCT.md Enforce Markdown unordered list style (#28172) 2023-07-11 14:44:41 +02:00
Gemfile build(deps): bump nokogiri from 1.16.5 to 1.16.6 (#33261) 2024-06-14 08:25:52 +02:00
Gemfile.lock build(deps-dev): bump public_suffix from 5.0.5 to 5.1.0 (#33297) 2024-06-17 19:07:39 +02:00
LICENSE.md Adds GitHub Action for Remark, fixes code flag on fences (#10475) 2019-09-29 00:50:28 +02:00
README.md Update URL in readme (#27720) 2023-06-08 18:46:41 +02:00
Rakefile Clean up outdated/old school examples (#33284) 2024-06-15 12:32:39 -04:00
_config.yml 2024.6.3 (#33285) 2024-06-15 21:07:01 +02:00
config.rb Fix http generated images path when using Compass sprites 2013-07-13 23:22:29 +12:00
config.ru More fixes 2015-10-27 00:53:57 -07:00
package-lock.json build(deps-dev): bump textlint-rule-terminology from 5.0.12 to 5.0.13 (#33295) 2024-06-17 10:21:26 +02:00
package.json build(deps-dev): bump textlint-rule-terminology from 5.0.12 to 5.0.13 (#33295) 2024-06-17 10:21:26 +02:00

README.md

Discord License: CC BY-NC-SA 4.0

Deploys by netlify

Home Assistant website

This is the source for the Home-Assistant.io website.

Setup

Setting up to contribute to documentation and the process for submitting pull requests is explained in the developer documentation.

Site preview

In order to make the preview available on http://127.0.0.1:4000, use the following bundler command:

bundle exec rake preview

If the preview is not running on your local machine, pass the IP of the target machine from where it should be served as a parameter, i.e. to access on http://192.168.0.123:4000:

bundle exec rake preview[192.168.0.123]

Speeding up site generation

Every release we post long changelogs to the website. This slows down generation of the website significantly! We include some tools to temporarily exclude the blog posts that you're not working on out of the way.

bundle exec rake isolate[filename-of-blogpost]

When you're done working on the site, run the following command to move the posts back again:

bundle exec rake integrate