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