From 400bb2e6ece413d9d1a735808e3ac287a4328806 Mon Sep 17 00:00:00 2001 From: Serhii Yahdzhyiev Date: Thu, 25 Dec 2025 12:32:10 +0100 Subject: [PATCH 1/2] chore: add instructions on node version syncing to the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index bed7f90..8c5c672 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,9 @@ It is based on the `vue create` Hello World project. `src/App.vue` contains the JSON Forms specific code. + +- Sync your used node version with one in `.nvmrc` + (e.g. `nvm install && nvm use` from this repo's root, if you're using [nvm](https://github.com/nvm-sh/nvm)). - Execute `npm ci` to install the prerequisites. - Execute `npm run serve` to start the application. From e0a07d6dd07a678d20a6beaa6fd23663abd5ac8f Mon Sep 17 00:00:00 2001 From: Serhii Yahdzhyiev Date: Thu, 25 Dec 2025 12:36:16 +0100 Subject: [PATCH 2/2] chore: fix README instructions on how to launch the seed application --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8c5c672..677ed11 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ It is based on the `vue create` Hello World project. - Sync your used node version with one in `.nvmrc` (e.g. `nvm install && nvm use` from this repo's root, if you're using [nvm](https://github.com/nvm-sh/nvm)). - Execute `npm ci` to install the prerequisites. -- Execute `npm run serve` to start the application. +- Execute `npm run dev` to start the application. -Browse to http://localhost:8080 to see the application in action. +Browse to http://localhost:5173 to see the application in action. For more information please see the JSON Forms Vue [documentation](https://jsonforms.io/docs/integrations/vue).