+* if you have Python installed (part of the Nominatim API server installation):
+
+ 1. `cd dist`
+ 2. start webserver `python3 -m http.server 8765`
+ 3. open [http://localhost:8765/]() in your browser
+
+* start a webserver using ([Big list of http static server one-liners](https://gist.github.com/willurd/5720255)) or configure Apache, nginx or other webservers to serve the `dist` directory.
+
+
+## Configuration
+
+You can customize your installation by creating and editing `dist/theme/config.theme.js` which allows you to override the default values provided by `dist/config.default.js`.
+
+The following `config.theme.js` example file changes the location of the API endpoint:
+
+```javascript
+ Nominatim_Config.Nominatim_API_Endpoint = 'http://my-server:1234/';