diff --git a/README.md b/README.md index 0ae159df..80114747 100644 --- a/README.md +++ b/README.md @@ -71,21 +71,21 @@ In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as bel ## Homebridge Config The Homebridge config file is located at ```/config.json``` -This file will be created the first time you run the container with a sample [FakeBulb](https://www.npmjs.com/package/homebridge-fakebulb) accessory. +This file will be created the first time you run the container if it does not already exist. ## Homebridge Plugins Plugins should be defined in the ```/package.json``` file in the standard NPM format. -This file will be created the first time you run the container with the [FakeBulb](https://www.npmjs.com/package/homebridge-fakebulb) module. +This file will be created the first time you run the container if it does not already exist. -Any plugins added to the **package.json** will be installed each time the container is restarted. -Plugins can be uninstalled by removing the entry from the **package.json** and restarting the container. +Any plugins added to the `package.json` will be installed each time the container is restarted. +Plugins can be uninstalled by removing the entry from the `package.json` and restarting the container. You can also install plugins using [yarn](https://yarnpkg.com) (an npm replacement) which will automatically update the package.json file as you add and remove modules. -> You must restart the container after installing or removing plugins for the changes to take effect. +**You must restart the container after installing or removing plugins for the changes to take effect.** -**To add plugins using yarn:** +### To add plugins using yarn: ``` docker exec yarn add @@ -97,7 +97,7 @@ Example: docker exec homebridge yarn add homebridge-hue ``` -**To remove plugins using yarn:** +### To remove plugins using yarn: ``` docker exec yarn remove diff --git a/root/defaults/config.json b/root/defaults/config.json index 1f09f6b9..bf2eda79 100644 --- a/root/defaults/config.json +++ b/root/defaults/config.json @@ -9,10 +9,6 @@ "description": "This is an example configuration file. You can use this as a template for creating your own configuration file containing devices you actually own.", "accessories": [ - { - "accessory": "FakeBulb", - "name": "Fake Light" - } ], "platforms": [ diff --git a/root/defaults/package.json b/root/defaults/package.json index a78ad5a1..9d41cc0b 100644 --- a/root/defaults/package.json +++ b/root/defaults/package.json @@ -1,5 +1,5 @@ { "dependencies": { - "homebridge-fakebulb": "^0.0.3" + "homebridge-dummy": "^0.2.0" } }