Instructions for starting the web application
> cd ./webapp
> node server.js
> cd ./webapp/client
> npx serve -s dist -l 3000
- Duplicate checking has been added: the backend will now prevent adding rows to the CSV file if a row with the same combination of parent_bc_id and dec_id already exists. If a duplicate is detected, the API will return a 409 error. No further action is needed to enforce this rule.
-
When making changes to the web application files, in order to view the changes, ensure the following commands are executed:
> cd ./webapp/client > npx vite build