From 605976d9bed15a8d2565aee34722cfa4a2c80d74 Mon Sep 17 00:00:00 2001 From: Paul Frybarger Date: Mon, 11 Dec 2023 09:42:35 +0000 Subject: [PATCH] chore: make start script executable and add hot reloading instructions (#58) --- CONTRIBUTING.md | 6 ++++++ start.sh | 2 ++ 2 files changed, 8 insertions(+) mode change 100644 => 100755 start.sh diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 080df32..74ac7ad 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -38,6 +38,12 @@ To run locally, execute: The service will be available at [`localhost:4000`](http://localhost:4000) from your browser. +To enable hot reloading of the web application, make sure you have NodeJS installed and execute: + +```shell +npm run watch +``` + ## Git commit into to the repository We advise to add [scope](https://ec.europa.eu/component-library/v1.15.0/eu/docs/conventions/git/#:~:text=feat%3A%20A%20new%20feature,bug%20nor%20adds%20a%20feature) diff --git a/start.sh b/start.sh old mode 100644 new mode 100755 index 9c2972f..380fc31 --- a/start.sh +++ b/start.sh @@ -1 +1,3 @@ +#!/bin/sh + mvn spring-boot:run