README.md in desi-0.4.0 vs README.md in desi-0.5.0
- old
+ new
@@ -142,22 +142,27 @@
```
## Change setting(s)
-Right now, there's actually only one setting to change: the installation
-directory. Desi will look for files `/etc/desi.yml` or `~/.desi.yml` and use
-the *directory* entry specified. The default directory is `~/elasticsearch`.
+There are two settings at the moment: location of the installation directory
+(`directory`, default: `~/elasticsearch`) and ES host address (`server`,
+default: `localhost:9200`).
+Desi will look for files `/etc/desi.yml` or `~/.desi.yml` (the options found in
+the former will be overriden by the ones found in the latter).
+
+
* command-line
`echo -e "---\n directory: ~/foobar" > ~/.desi.yml` for instance
* library
```ruby
Desi.configure do |c|
c.directory = "~/local/foo"
+ c.server = "192.168.1.42:9200"
end
```