From d211add83fb3cfb75c22380ecd6b942629610a63 Mon Sep 17 00:00:00 2001 From: Gulliver Date: Mon, 21 Oct 2024 20:52:49 +0200 Subject: [PATCH 1/2] added page with templates and crow applications to mkdocs --- .../project_templates_and_applications.md | 16 ++++++++++++++++ mkdocs.yml | 1 + 2 files changed, 17 insertions(+) create mode 100644 docs/getting_started/project_templates_and_applications.md diff --git a/docs/getting_started/project_templates_and_applications.md b/docs/getting_started/project_templates_and_applications.md new file mode 100644 index 000000000..84c4d198e --- /dev/null +++ b/docs/getting_started/project_templates_and_applications.md @@ -0,0 +1,16 @@ +Here we collect samples and applications. + +# Template projects + ++ [https://github.com/gittiver/crow_template](https://github.com/gittiver/crow_template) + - Features: + - github template repository + - uses CPM for including crow into project + - catch2 for testing + ++ [https://github.com/seobryn/corax-template](https://github.com/seobryn/corax-template) + + - Features + - `Scripts` to Make, Compile and Clean the build + - `Libs` Folder to store all the external Libs, Crow is set by default. + - Format rules using `clang-format` diff --git a/mkdocs.yml b/mkdocs.yml index 9d060ac21..6d5665a05 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -54,6 +54,7 @@ nav: - Linux: getting_started/setup/linux.md - MacOS: getting_started/setup/macos.md - Windows: getting_started/setup/windows.md + - Project templates and applications: getting_started/project_templates_and_applications.md - Your First Application: getting_started/your_first_application.md - A Simple Webpage: getting_started/a_simple_webpage.md - Guides: From da8c660066cc5e9eefce56db4e59e38826188278 Mon Sep 17 00:00:00 2001 From: Gulliver Date: Fri, 29 Nov 2024 19:15:10 +0100 Subject: [PATCH 2/2] added notice that the linked repos are third party. --- docs/getting_started/project_templates_and_applications.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/getting_started/project_templates_and_applications.md b/docs/getting_started/project_templates_and_applications.md index 84c4d198e..2ae17fb53 100644 --- a/docs/getting_started/project_templates_and_applications.md +++ b/docs/getting_started/project_templates_and_applications.md @@ -1,4 +1,6 @@ -Here we collect samples and applications. +Here we collect samples and applications. + +The repositories mentioned here are 3rd party owned and are not supported or managed by the CrowCpp Project. # Template projects