The user interface used to be included in the geocoder. Thus the
first version avoid being a redesign and still uses some of the
-same configuration values. For simplicity it's not a single
-page application (SPA) written in a framework though it could
-be in the future if complexity grows.
+same configuration values.
-Uses [jQuery](https://jquery.com/) for browser DOM interaction,
-[handlebar](http://handlebarsjs.com/) templates to build pages,
+Uses [svelte](https://svelte.dev/) framework,
[leaflet](https://leafletjs.com/) for map interaction,
[bootstrap](https://getbootstrap.com/) for layout styling.
* After you change files in `src` directory run
```
- yarn build
+ yarn dev
```
+ which will start a webserver on port 9880 and auto-reloads
+ whenever you edit files.
-* Start a webserver on port 8000 to preview changes
-
- ```
- yarn start
- ```
-
-* Run code style check
-
- ```
- yarn lint
- ```
## Prepare a release
2. Update `CHANGES.md` file
-3. Commit your changes: `git add... `, `git commit ...`, `git push ...` etc
+3. Run `yarn build` to make sure the `dist/build/` files don't contain lifereload.js
+
+4. Commit your changes: `git add... `, `git commit ...`, `git push ...` etc
-4. Tag release: `git tag THE_VERSION_NUMBER`, `git push --tags`
+5. Tag release: `git tag THE_VERSION_NUMBER`, `git push --tags`
-5. Upload release
\ No newline at end of file
+6. Upload release
\ No newline at end of file