From 5614cda0bf5eef70960abf9dcb7ce879911cb7f2 Mon Sep 17 00:00:00 2001 From: Magicansk <30593595+magicansk@users.noreply.github.com> Date: Thu, 26 Oct 2017 16:37:18 +0800 Subject: [PATCH] Update getting-started.MD --- .../getting-started.MD | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/webgoat-lessons/webgoat-lesson-template/getting-started.MD b/webgoat-lessons/webgoat-lesson-template/getting-started.MD index 0b3595c7c..0789515d1 100644 --- a/webgoat-lessons/webgoat-lesson-template/getting-started.MD +++ b/webgoat-lessons/webgoat-lesson-template/getting-started.MD @@ -30,40 +30,40 @@ There are a number of moving parts and this sample lesson will help you navigate 2. The HTML content framing - * Rename the provided file in src/main/resources/html using your value from the `getId` method in your lesson's base class: + * Rename the provided file in src/main/resources/html using your value from the `getId` method in your lesson's base class: e.g. `public String getId() { return "your-lesson"; }` >> `your-lesson.html` - * Modify that file following the commented instructions in there. - * In conjunction with this file you. + * Modify that file following the commented instructions in there. + * In conjunction with this file you. 3. Assignment Endpoints - * In the above html file, you will see an example of an 'attack form'. You can create endpoints to handle these attacks and provide the user feedback and simulated output. See the example file here as well as other existing lessons for ways to extend these. You will extend the `AssignmentEndpoint` as the example will show: - * You can also create supporting (non-assignment) endpoints, that are not evaluated/graded. - * See other lesson examples for creating unit/integration tests for your project as well. + * In the above html file, you will see an example of an 'attack form'. You can create endpoints to handle these attacks and provide the user feedback and simulated output. See the example file here as well as other existing lessons for ways to extend these. You will extend the `AssignmentEndpoint` as the example will show: + * You can also create supporting (non-assignment) endpoints, that are not evaluated/graded. + * See other lesson examples for creating unit/integration tests for your project as well. 4. Getting your lesson to show up - * Modify the webgoat-lessons/pom.xml to include your project in the `` section: - ```xml + * Modify the webgoat-lessons/pom.xml to include your project in the `` section: + ```xml - + webgoat-lesson-template - ``` + ``` - * Modify the webgoat-server/pom.xml to add your project as a dependency in the `` section: - ```xml - -