Template repository for C++ projects. After you create a new repository using this one as template, search and replace all "my_project_name" with the desired name.
docker build -f docker/Dockerfile -t my_project_name-dev:latest .docker run -it --rm --network=host --privileged -v .:/root/my_project_name -w /root/my_project_name my_project_name-dev:latest bashbash -e /root/my_project_name/scripts/clean_build_install_test_release.shDo a clean instrumented build, run the tests and produce an HTML report. Fails if line coverage falls below 80% (the threshold enforced in CI).
bash -e /root/my_project_name/scripts/coverage.shAPI docs are generated from the library headers with doxide and rendered with Material for MkDocs.
bash -e /root/my_project_name/scripts/build_docs.shTo preview with live reload, serve them (the container is run with
--network=host, so the site is reachable from the host):
mkdocs serve -a 0.0.0.0:8000Needed extensions on the host PC:
code --force --install-extension ms-azuretools.vscode-containers
code --force --install-extension ms-vscode-remote.remote-containers