Go to file
Thomas Dietrich 5264c7ac8f Add editorconfig file 2016-12-03 14:34:20 +01:00
_data updated generated content 2016-11-27 12:04:57 +01:00
_includes Replace tabs by spaces, apply auto indent 2016-12-03 14:34:20 +01:00
_layouts Add redirection example 2016-12-03 14:34:20 +01:00
_repos updated generated content 2016-10-18 20:39:19 +02:00
_sample_code/osgi_codings_tasks/bundles Add coding tasks for OSGi, III. Service Tracker (#113) 2016-11-02 10:37:08 +01:00
_sass reverted _source folder again as it does not seem to be supported by Github Pages 2016-05-30 14:50:02 +02:00
addons updated generated content 2016-11-27 12:04:57 +01:00
administration [Runtime] Remove table headers 2016-11-12 20:34:33 +01:00
appendix Added troubleshooting feature repos (#10) 2016-06-02 22:05:34 +02:00
community Add title to most pages, fixes (#60) 2016-08-05 12:10:20 +02:00
concepts updated generated content and added imperihome integration 2016-11-11 09:30:30 +01:00
configuration [nginx] Remove proxy_buffering in config examples (#126) 2016-11-02 16:48:44 +01:00
css Improve style.css file (#136) 2016-11-14 08:48:31 +01:00
developers Add note regarding service-id in binding.xmls for openHAB 1 bindings (#141) 2016-11-23 04:34:49 +05:30
features added voice to addons overview 2016-11-18 08:38:58 +01:00
font/material-design-icons reverted _source folder again as it does not seem to be supported by Github Pages 2016-05-30 14:50:02 +02:00
images reverted _source folder again as it does not seem to be supported by Github Pages 2016-05-30 14:50:02 +02:00
installation [Linux] Fix useradd to adduser (#139) 2016-11-19 20:38:36 +05:30
js reverted _source folder again as it does not seem to be supported by Github Pages 2016-05-30 14:50:02 +02:00
tutorials Adapt demo and migration tutorial to new package types (#143) 2016-12-03 13:38:27 +01:00
.editorconfig Add editorconfig file 2016-12-03 14:34:20 +01:00
.gitignore updated generated content 2016-10-07 10:44:39 +02:00
.gitmodules updated generated files and included openhab-bundles repo for additional addons 2016-09-06 15:02:05 +02:00
404.md Add basic 404 error page (#116) 2016-10-18 16:42:02 +02:00
CNAME Initial version of openHAB 2 documentation website 2016-05-14 21:18:31 +02:00
CONTRIBUTING.md added infos to README.md 2016-05-30 11:26:24 +02:00
README.md Add Vagrant machine (#57) 2016-08-04 22:09:26 +02:00
Vagrantfile Add Vagrant machine (#57) 2016-08-04 22:09:26 +02:00
_config.yml Add basic 404 error page (#116) 2016-10-18 16:42:02 +02:00
favicon.ico reverted _source folder again as it does not seem to be supported by Github Pages 2016-05-30 14:50:02 +02:00
index.html Add basic 404 error page (#116) 2016-10-18 16:42:02 +02:00
overview.md improved welcome page 2016-05-31 11:22:23 +02:00
pom.xml fixed escaping of quotes and voice service menu 2016-11-13 22:46:34 +01:00
redirect-test.md Add redirection example 2016-12-03 14:34:20 +01:00
update.sh Updated auto-generated content and added HABmin and HABPanel to the menu 2016-09-24 22:45:27 -07:00

README.md

Introduction

This repository contains the documentation for openHAB.

The result is available at http://docs.openhab.org/

Contributing to the Documentation

The documentation is a community effort, so everyone is welcome to suggest changes, add new sections and fix bugs. This is done exactly the same way as for the code repositories, simply through pull requests against this repo. Please read the contribution guidelines for details.

Prerequisites

Our documentation is built with Jekyll and served through Github Pages.

In order to run Jekyll locally, you also need Ruby being installed. Please see the Jekyll installation instructions for details.

An alternative for a local setup is a virtual machine provided by Vagrant.

Serving the Documentation locally

Once you have Jekyll installed and the repository checked out, simply run

jekyll serve

from within the repository root folder and point your browser to http://localhost:4000. This will give you a preview of the documentation in the same way as it will appear on docs.openhab.org once your PR is merged. Changes to the markdown files will automatically be taken into account as Jekyll re-generates the pages on the fly.

Alternative: Vagrant VM

You can also have a virtual machine serving a Jekyll and webserver instance for you, without changing your base system or being limited by it. The virtual machine will run in the background, process your changes to the source and presenting the results on your hosts http://localhost:4000. A Vagrant machine configured by a Vagrantfile file is provided for that purpose.

You need to have VirtualBox and Vagrant installed. After that, it's as easy as:

/path-to/openhab-docs$ vagrant up

Automatically Generated Parts

Please note that a few parts MUST NOT BE MANUALLY EDITED! These are copied from the source code repositories and some files are generated from them. These files/folders are:

_source/_data
_source/concepts
_source/addons/bindings
_source/addons/iconsets
_source/addons/io
_source/addons/uis

The generation/update of these files can be triggered through mvn clean package in the repo root. Please note that this repository works with sub-modules, so if you want to run this Maven generation, you should check out the repository recursively:

git clone --recursive https://github.com/openhab/openhab-docs