From 5d641b76d249cb16ce00020197d4707f2779b1a4 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 22 Oct 2014 08:20:37 -0700 Subject: [PATCH] Add frontend build instruction to readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c4a4944d4f0..f97bbd462fd 100644 --- a/README.md +++ b/README.md @@ -28,12 +28,16 @@ The system is built modular so support for other devices or actions can be imple ## Installation instructions / Quick-start guide +Running Home Assistant requires that node.js and python3 are installed. (Node.js is required for installing dependencies and concatenating the frontend) + Run the following code to get up and running with the minimum setup: ```python git clone --recursive https://github.com/balloob/home-assistant.git cd home-assistant pip3 install -r requirements.txt +npm install bower vulcanize +./build_polymer python3 start.py ```