1 # Developing Nominatim-UI
5 The user interface used to be included in the geocoder. Thus the
6 first version avoid being a redesign and still uses some of the
7 same configuration values. For simplicity it's not a single
8 page application (SPA) written in a framework though it could
9 be in the future if complexity grows.
11 Uses [jQuery](https://jquery.com/) for browser DOM interaction,
12 [handlebar](http://handlebarsjs.com/) templates to build pages,
13 [leaflet](https://leafletjs.com/) for map interaction,
14 [bootstrap](https://getbootstrap.com/) for layout styling.
17 ## Building the frontend
19 * Install dependencies
25 * After you change files in `src` directory run
31 * Start a webserver on port 8000 to preview changes
37 * Run code style check
45 1. Update version number in `package.json` file
47 2. Update `CHANGES.md` file
49 3. Commit your changes: `git add... `, `git commit ...`, `git push ...` etc
51 4. Tag release: `git tag THE_VERSION_NUMBER`, `git push --tags`