This repository bundles the application components, providing the foundation for the Docker image.
git clone --recurse-submodules https://github.com/IT-Wintercamp-2025/application-dockerized.gitUpdate a specific submodule
cd <submodule-folder> # e.g. backend
git pull origin <branch> # e.g. production
cd ..
git add <submodule-folder>
git commit -m "Updated <submodule> submodule"
git push origin <branch>Merge-update every submodule
git submodule update --remote --merge
git commit -am "Updated all submodules"
git push origin main