From 20f74cc29248e8bd8144c1d70f73f1d15aff9526 Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Thu, 25 Jan 2024 12:23:08 +0100 Subject: [PATCH] Add notes about using ' --- building/tracks/concept-exercises.md | 11 +++++++++++ building/tracks/practice-exercises.md | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/building/tracks/concept-exercises.md b/building/tracks/concept-exercises.md index 337b2863..d551807a 100644 --- a/building/tracks/concept-exercises.md +++ b/building/tracks/concept-exercises.md @@ -4,6 +4,17 @@ The concepts taught by the concept exercises form a _syllabus_. For more information on how to design a syllabus, check the [syllabus documentation](/docs/building/tracks/syllabus). +````exercism/note +You can quickly scaffold a new Concept Exercise by running the following commands from the track's root directory: + +```shell +bin/fetch-configlet +bin/configlet create --concept-exercise +``` + +For more information, check the [`configlet create` docs](/docs/building/configlet/create) +```` + ## Metadata Concept Exercise metadata is defined in the `exercises.concept` key in the [config.json file](/docs/building/tracks/config-json#concept-exercises). The metadata defines the exercise's UUID, slug and more. diff --git a/building/tracks/practice-exercises.md b/building/tracks/practice-exercises.md index 51fb7bfa..e6eccb0d 100644 --- a/building/tracks/practice-exercises.md +++ b/building/tracks/practice-exercises.md @@ -6,6 +6,17 @@ Interested in adding your first Practice Exercise to a track? Watch our walkthro [video:vimeo/906101866?h=2954ad331e]() +````exercism/note +You can quickly scaffold a new Practice Exercise by running the following commands from the track's root directory: + +```shell +bin/fetch-configlet +bin/configlet create --practice-exercise +``` + +For more information, check the [`configlet create` docs](/docs/building/configlet/create) +```` + ## Metadata Practice Exercise metadata is defined in the `exercises.practice` key in the [config.json file](/docs/building/tracks/config-json). The metadata defines the exercise's UUID, slug and more.