3 ![GitHub release (latest by date)](https://img.shields.io/github/v/release/osm-search/nominatim-ui)
5 Debugging user interface for [Nominatim](https://nominatim.org/)
6 ([source](https://github.com/osm-search/Nominatim/)) geocoder.
8 The frontend runs standalone as website and will request data
9 from a separate Nominatim API running on http://localhost:80/nominatim/ (configurable, see below).
11 Download a stable release from [https://github.com/osm-search/nominatim-ui/releases]().
12 For technical background, how to develop and create a release see [CONTRIBUTE.md](CONTRIBUTE.md) file at [https://github.com/osm-search/nominatim-ui/]().
14 ![Screenshot](screenshot.png)
16 ## Starting the frontend
20 * open the `dist` directory in your browser.
22 * if you have Python installed (part of the Nominatim API server installation):
25 2. start webserver `python3 -m http.server 8765`
26 3. open [http://localhost:8765/]() in your browser
28 * 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.
33 Defaults are set in `dist/config.default.js`.
34 You can overwrite settings in `dist/theme/config.theme.js`, for example:
37 Nominatim_Config.Nominatim_API_Endpoint = 'http://my-server:1234/';
40 The `dist/theme/` directory also contains files make it easy to set a different
41 logo image, colors, welcome and help text.
45 The source code is available under a [GPLv2 license](LICENSE).