From 00092bd31bebb637718da6dc5c007c08efc46600 Mon Sep 17 00:00:00 2001 From: Nikola Sibalic Date: Sun, 5 Jan 2025 20:22:25 +0100 Subject: [PATCH] instructions for use of containers and parcel.js --- CONTRIBUTING.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7d5b2c2..d11fcfa 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,3 +8,20 @@ code base functions are utilized) and later make merges with the main code easier. In any case, don't hesitate to open issue to ask questions and discuss ideas and suggestions. + +## Local development + +Backend and FE in container (Linux with Podman installed) + +```bash +source build_containers.sh +source deploy.sh +``` + +Running development server of front end (requires `npm`) + +```bash +cd caroline/html +npm install +npx parcel index.html +```