blob: 3cbcc18b1573726739c95ec0b3ab7f2a423ee28d [file] [log] [blame]
JakobKriegf47eeee2020-08-17 21:04:35 +02001.. This work is a derivative of https://wiki.onap.org/display/DW/Running+Blueprints+Processor+Microservice+in+an+IDE
2.. This work is licensed under a Creative Commons Attribution 4.0
3.. International License. http://creativecommons.org/licenses/by/4.0
4.. Copyright (C) 2020 Deutsche Telekom AG.
5
6Running Blueprints Processor Microservice in an IDE
7====================================================
8
9Objective
10~~~~~~~~~~~~
11
JakobKrieg4fe1cfb2020-11-05 13:56:40 +010012Run the blueprint processor locally in an IDE, while having the database running in a container.
JakobKriegf47eeee2020-08-17 21:04:35 +020013This way, code changes can be conveniently tested and debugged.
14
JakobKriegf47eeee2020-08-17 21:04:35 +020015Check out the code
16~~~~~~~~~~~~~~~~~~~
17
18Check out the code from Gerrit: https://gerrit.onap.org/r/#/admin/projects/ccsdk/cds
19
20Build it locally
21~~~~~~~~~~~~~~~~~~
22
23In the checked out directory, type
24
25.. code-block:: bash
26
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -040027 mvn clean install -Pq -Dadditionalparam=-Xdoclint:none
JakobKriegf47eeee2020-08-17 21:04:35 +020028
JakobKrieg4fe1cfb2020-11-05 13:56:40 +010029Wait for the maven install command to finish until you go further.
30
JakobKriegf47eeee2020-08-17 21:04:35 +020031Spin up a Docker container with the database
32~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
33
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +000034The Blueprints Processor project uses a database to store information about the blueprints
JakobKriegf47eeee2020-08-17 21:04:35 +020035and therefore it needs to be online before attempting to run it.
36
Singal, Kapil (ks220y)83c0cd22020-10-19 10:00:59 -040037One way to create the database is by using the :file:`docker-compose.yaml` file.
JakobKrieg4fe1cfb2020-11-05 13:56:40 +010038This database will require a local directory to mount a volume, therefore before running docker-compose create following directory:
JakobKriegf47eeee2020-08-17 21:04:35 +020039
40.. code-block:: bash
41
42 mkdir -p -m 755 /opt/app/cds/mysql/data
43
44Navigate to the docker-compose file in the distribution module:
45
JakobKrieg1863a7c2020-10-01 15:09:11 +020046.. tabs::
JakobKriegf47eeee2020-08-17 21:04:35 +020047
JakobKrieg1863a7c2020-10-01 15:09:11 +020048 .. group-tab:: Frankfurt - Latest
49
50 .. code-block:: bash
51
52 cd ms/blueprintsprocessor/application/src/main/dc
53
54 .. group-tab:: El Alto - Dublin
55
56 .. code-block:: bash
57
58 ms/blueprintsprocessor/distribution/src/main/dc
JakobKriegf47eeee2020-08-17 21:04:35 +020059
60And run docker-composer:
61
62.. code-block:: bash
63
64 docker-compose up -d db
65
66This should spin up a container of the MariaDB image in the background.
67To check if it has worked, this command can be used:
68
69.. code-block:: bash
70
71 docker-compose logs -f
72
73The phrase ``mysqld: ready for connections`` indicates that the database was started correctly.
74
75From now on, the Docker container will be available on the computer; if it ever gets stopped,
76it can be started again by the command:
77
78.. code-block:: bash
79
80 docker start <id of mariadb container>
81
JakobKriegf47eeee2020-08-17 21:04:35 +020082Set permissions on the local file system
83~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
84
85Blueprints processor uses the local file system for some operations and, therefore,
86need some existing and accessible paths to run properly.
87
88Execute the following commands to create the needed directories, and grant access to the current user to modify them:
89
90.. code-block:: bash
91
92 mkdir -p -m 755 /opt/app/onap/blueprints/archive
93 mkdir -p -m 755 /opt/app/onap/blueprints/deploy
94 mkdir -p -m 755 /opt/app/onap/scripts
95 sudo chown -R $(id -u):$(id -g) /opt/app/onap/
96
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +000097Import the project into the IDE
JakobKriegf47eeee2020-08-17 21:04:35 +020098~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
99
JakobKrieg668466f2020-08-27 16:36:38 +0200100.. tabs::
JakobKriegf47eeee2020-08-17 21:04:35 +0200101
JakobKrieg668466f2020-08-27 16:36:38 +0200102 .. tab:: IntelliJ IDEA
JakobKriegf47eeee2020-08-17 21:04:35 +0200103
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100104 .. note::
105 This is the recommended IDE for running CDS blueprint processor.
106
107 Go to *File | Open* and choose the :file:`pom.xml` file of the cds/ms/blueprintprocessor directory:
JakobKriegf47eeee2020-08-17 21:04:35 +0200108
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000109 |imageImportProject|
JakobKriegf47eeee2020-08-17 21:04:35 +0200110
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100111 Import as a project. Sometimes it may be necessary to reimport Maven project, e.g. if some dependencies can't be found:
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000112
113 |imageReimportMaven|
JakobKriegf47eeee2020-08-17 21:04:35 +0200114
JakobKrieg668466f2020-08-27 16:36:38 +0200115 **Override some application properties:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200116
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100117 Next steps will create a run configuration profile overriding some application properties with custom values,
118 to reflect the local environment characteristics.
JakobKriegf47eeee2020-08-17 21:04:35 +0200119
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000120 .. tabs::
JakobKriegf47eeee2020-08-17 21:04:35 +0200121
JakobKrieg1863a7c2020-10-01 15:09:11 +0200122 .. group-tab:: Frankfurt - Latest
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000123
124 Navigate to the main class of the Blueprints Processor, the BlueprintProcessorApplication class:
125
126 ``ms/blueprintsprocessor/application/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/BlueprintProcessorApplication.kt``.
127
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100128 After dependencies are imported and indexes are set up you will see a green arrow
129 next to main function of BlueprintProcessorApplication class, indicating that the run configuration can now be
130 created. Right-click inside the class at any point to load the context menu and select create
131 a run configuration from context:
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000132
Singal, Kapil (ks220y)83c0cd22020-10-19 10:00:59 -0400133 |imageCreateRunConfigKt|
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000134
135 **The following window will open:**
136
137 |imageRunConfigKt|
138
139 **Add the following in the field `VM Options`:**
140
141 .. code-block:: bash
142 :caption: **Custom values for properties**
143
144 -Dspring.profiles.active=dev
145
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100146 Optional: You can override any value from **application-dev.properties** file here. In this case use the following pattern:
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000147
148 .. code-block:: java
149
150 -D<application-dev.properties key>=<application-dev.properties value>
151
152 .. group-tab:: El Alto
153
154 Navigate to the main class of the Blueprints Processor, the BlueprintProcessorApplication class:
155
156 ``ms/blueprintsprocessor/application/src/main/java/org/onap/ccsdk/cds/blueprintsprocessor/BlueprintProcessorApplication.java.``
157
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100158 After dependencies are imported and indexes are set up you will see a green arrow
159 next to main function of BlueprintProcessorApplication class, indicating that the run configuration can now be
160 created. Right-click inside the class at any point to load the context menu and select create
161 a run configuration from context:
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000162
163 |imageCreateRunConfigJava|
164
165 **The following window will open:**
166
167 |imageRunConfigJava|
168
169 **Add the following in the field `VM Options`:**
170
171 .. code-block:: bash
172 :caption: **Custom values for properties**
173
174 -Dspring.profiles.active=dev
175
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100176 Optional: You can override any value from **application-dev.properties** file here. In this case use the following pattern:
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000177
178 .. code-block:: java
179
180 -D<application-dev.properties key>=<application-dev.properties value>
181
182 .. group-tab:: Dublin
183
184 Navigate to the main class of the Blueprints Processor, the BlueprintProcessorApplication class:
185
186 ``ms/blueprintsprocessor/application/src/main/java/org/onap/ccsdk/cds/blueprintsprocessor/BlueprintProcessorApplication.java``.
187
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100188 After dependencies are imported and indexes are set up you will see a green arrow
189 next to main function of BlueprintProcessorApplication class, indicating that the run configuration can now be
190 created. Right-click inside the class at any point to load the context menu and select create
191 a run configuration from context:
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000192
193 |imageCreateRunConfigJava|
194
195 **The following window will open:**
196
197 |imageRunConfigJava|
198
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100199 **Add the following in the field `VM Options`**
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000200
201 .. code-block:: java
202 :caption: **Custom values for properties**
203
204 -DappName=ControllerBluePrints
205 -Dms_name=org.onap.ccsdk.apps.controllerblueprints
206 -DappVersion=1.0.0
207 -Dspring.config.location=opt/app/onap/config/
208 -Dspring.datasource.url=jdbc:mysql://127.0.0.1:3306/sdnctl
209 -Dspring.datasource.username=sdnctl
210 -Dspring.datasource.password=sdnctl
211 -Dcontrollerblueprints.loadInitialData=true
212 -Dblueprintsprocessor.restclient.sdncodl.url=http://localhost:8282/
213 -Dblueprintsprocessor.db.primary.url=jdbc:mysql://localhost:3306/sdnctl
214 -Dblueprintsprocessor.db.primary.username=sdnctl
215 -Dblueprintsprocessor.db.primary.password=sdnctl
216 -Dblueprintsprocessor.db.primary.driverClassName=org.mariadb.jdbc.Driver
217 -Dblueprintsprocessor.db.primary.hibernateHbm2ddlAuto=update
218 -Dblueprintsprocessor.db.primary.hibernateDDLAuto=none
219 -Dblueprintsprocessor.db.primary.hibernateNamingStrategy=org.hibernate.cfg.ImprovedNamingStrategy
220 -Dblueprintsprocessor.db.primary.hibernateDialect=org.hibernate.dialect.MySQL5InnoDBDialect
221 -Dblueprints.processor.functions.python.executor.executionPath=./components/scripts/python/ccsdk_blueprints
222 -Dblueprints.processor.functions.python.executor.modulePaths=./components/scripts/python/ccsdk_blueprints,./components/scripts/python/ccsdk_netconf,./components/scripts/python/ccsdk_restconf
223 -Dblueprintsprocessor.restconfEnabled=true
224 -Dblueprintsprocessor.restclient.sdncodl.type=basic-auth
225 -Dblueprintsprocessor.restclient.sdncodl.url=http://localhost:8282/
226 -Dblueprintsprocessor.restclient.sdncodl.username=admin
227 -Dblueprintsprocessor.restclient.sdncodl.password=Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
228 -Dblueprintsprocessor.grpcEnable=false
229 -Dblueprintsprocessor.grpcPort=9111
230 -Dblueprintsprocessor.blueprintDeployPath=/opt/app/onap/blueprints/deploy
231 -Dblueprintsprocessor.blueprintArchivePath=/opt/app/onap/blueprints/archive
232 -Dblueprintsprocessor.blueprintWorkingPath=/opt/app/onap/blueprints/work
233 -Dsecurity.user.password={bcrypt}$2a$10$duaUzVUVW0YPQCSIbGEkQOXwafZGwQ/b32/Ys4R1iwSSawFgz7QNu
234 -Dsecurity.user.name=ccsdkapps
235 -Dblueprintsprocessor.messageclient.self-service-api.kafkaEnable=false
236 -Dblueprintsprocessor.messageclient.self-service-api.topic=producer.t
237 -Dblueprintsprocessor.messageclient.self-service-api.type=kafka-basic-auth
238 -Dblueprintsprocessor.messageclient.self-service-api.bootstrapServers=127.0.0.1:9092
239 -Dblueprintsprocessor.messageclient.self-service-api.consumerTopic=receiver.t
240 -Dblueprintsprocessor.messageclient.self-service-api.groupId=receiver-id
241 -Dblueprintsprocessor.messageclient.self-service-api.clientId=default-client-id
242 -Dspring.profiles.active=dev
243 -Dblueprintsprocessor.httpPort=8080
244 -Dserver.port=55555
245
246
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100247 **In the field 'Working Directory' browse to your application path** ``.../cds/ms/blueprintsprocessor/application``
JakobKriegb708ee62020-09-08 17:34:30 +0200248 **if path is not already specified correctly.**
249
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100250 Run configuration should now look something like this:
251
252 |imageRunConfigSetUp|
253
254 **Add/replace the following in Blueprint's application-dev.properties file.**
JakobKriegf47eeee2020-08-17 21:04:35 +0200255
256 .. code-block:: java
257
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000258 blueprintsprocessor.grpcclient.remote-python.type=token-auth
259 blueprintsprocessor.grpcclient.remote-python.host=localhost
260 blueprintsprocessor.grpcclient.remote-python.port=50051
261 blueprintsprocessor.grpcclient.remote-python.token=Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
JakobKriegf47eeee2020-08-17 21:04:35 +0200262
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000263 blueprintprocessor.remoteScriptCommand.enabled=true
JakobKriegf47eeee2020-08-17 21:04:35 +0200264
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100265 Take care that if a parameter already exist you need to change the value of the existing parameter to avoid duplicates.
266
JakobKriegf47eeee2020-08-17 21:04:35 +0200267
JakobKrieg668466f2020-08-27 16:36:38 +0200268 **Run the application:**
JakobKriegf47eeee2020-08-17 21:04:35 +0200269
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100270 Before running Blueprint Processor check that you use the correct Java version in IntelliJ.
271 Select either run or debug for the created Run Configuration to start the Blueprints Processor:
JakobKriegf47eeee2020-08-17 21:04:35 +0200272
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000273 |imageRunDebug|
JakobKriegf47eeee2020-08-17 21:04:35 +0200274
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000275 |imageBuildLogs|
JakobKriegf47eeee2020-08-17 21:04:35 +0200276
JakobKrieg668466f2020-08-27 16:36:38 +0200277 .. tab:: Visual Studio Code
JakobKriegf47eeee2020-08-17 21:04:35 +0200278
JakobKrieg668466f2020-08-27 16:36:38 +0200279 .. tabs::
JakobKriegf47eeee2020-08-17 21:04:35 +0200280
JakobKrieg1863a7c2020-10-01 15:09:11 +0200281 .. group-tab:: Frankfurt - Latest
JakobKriegf47eeee2020-08-17 21:04:35 +0200282
JakobKrieg668466f2020-08-27 16:36:38 +0200283 * **Step #1** - Make sure your installation of Visual Studio Code is up to date. This guide was writen using version 1.48
284 * **Step #2** - Install `Kotlin extension from the Visual Studio Code Marketplace <https://marketplace.visualstudio.com/items?itemName=fwcd.kotlin>`_
285 * **Step #3** - On the top menu click *Run | Open Configurations*
JakobKriegf47eeee2020-08-17 21:04:35 +0200286
JakobKrieg668466f2020-08-27 16:36:38 +0200287 .. warning:: This should open the file called `launch.json` but in some cases you'll need to wait for the Kotlin Language Server to be installed before you can do anything.
288 Please watch the bottom bar in Visual Studio Code for messages about things getting installed.
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000289
JakobKrieg668466f2020-08-27 16:36:38 +0200290 * **Step #4** - add configuration shown below to your configurations list.
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000291
JakobKrieg668466f2020-08-27 16:36:38 +0200292 .. code-block:: json
Marek Szwałkiewiczd586bc52020-08-21 11:05:49 +0000293
JakobKrieg668466f2020-08-27 16:36:38 +0200294 {
Singal, Kapil (ks220y)51e7c122020-09-25 17:22:54 -0400295 "type": "kotlin",
296 "request": "launch",
297 "name": "Blueprint Processor",
298 "projectRoot": "${workspaceFolder}/ms/blueprintsprocessor/application",
299 "mainClass": "-Dspring.profiles.active=dev org.onap.ccsdk.cds.blueprintsprocessor.BlueprintProcessorApplicationKt"
JakobKrieg668466f2020-08-27 16:36:38 +0200300 }
301
302 .. warning:: The `projectRoot` path assumes that you created your Workspace in the main CDS repository folder. If not - please change the path accordingly
303
304 .. note:: The `mainClass` contains a spring profile param before the full class name. This is done because `args` is not supported by Kotlin launch.json configuration.
305 If you have a cleaner idea how to solve this - please let us know.
306
307 **Add/replace the following in Blueprint's application-dev.properties file:**
308
309 .. code-block:: java
310
311 blueprintsprocessor.grpcclient.remote-python.type=token-auth
312 blueprintsprocessor.grpcclient.remote-python.host=localhost
313 blueprintsprocessor.grpcclient.remote-python.port=50051
314 blueprintsprocessor.grpcclient.remote-python.token=Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
315
316 blueprintprocessor.remoteScriptCommand.enabled=true
317
318 **Currently the following entries need to be added in VSC too:**
319
320 .. code-block:: java
321
322 logging.level.web=DEBUG
323 logging.level.org.springframework.web: DEBUG
324
325 #Encrypted username and password for health check service
326 endpoints.user.name=eHbVUbJAj4AG2522cSbrOQ==
327 endpoints.user.password=eHbVUbJAj4AG2522cSbrOQ==
328
329 #BaseUrls for health check blueprint processor services
330 blueprintprocessor.healthcheck.baseUrl=http://localhost:8080/
331 blueprintprocessor.healthcheck.mapping-service-name-with-service-link=[Execution service,/api/v1/execution-service/health-check],[Resources service,/api/v1/resources/health-check],[Template service,/api/v1/template/health-check]
332
333 #BaseUrls for health check Cds Listener services
334 cdslistener.healthcheck.baseUrl=http://cds-sdc-listener:8080/
335 cdslistener.healthcheck.mapping-service-name-with-service-link=[SDC Listener service,/api/v1/sdclistener/healthcheck]
336
337 #Actuator properties
338 management.endpoints.web.exposure.include=*
339 management.endpoint.health.show-details=always
340 management.info.git.mode=full
341
342 In VSC the properties are read from target folder, thats why the following maven command needs to be rerun:
343
344 .. code-block:: bash
345
346 mvn clean install -DskipTests=true -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dadditionalparam=-Xdoclint:none
347
348 Click Run in Menu bar.
349
350 |imageLogsVSC|
JakobKriegf47eeee2020-08-17 21:04:35 +0200351
352
353Testing the application
Singal, Kapil (ks220y)51e7c122020-09-25 17:22:54 -0400354~~~~~~~~~~~~~~~~~~~~~~~
JakobKriegf47eeee2020-08-17 21:04:35 +0200355
356There are two main features of the Blueprints Processor that can be of interest of a developer:
JakobKriegb708ee62020-09-08 17:34:30 +0200357blueprint publish and blueprint process.
JakobKriegf47eeee2020-08-17 21:04:35 +0200358
JakobKriegb708ee62020-09-08 17:34:30 +0200359To upload custom blueprints, the endpoint ``api/v1/execution-service/publish`` is used.
JakobKriegf47eeee2020-08-17 21:04:35 +0200360
361To process, the endpoint is ``api/v1/execution-service/process``.
362
363Postman is a software that can be used to send these request, and an example of
364them is present on https://www.getpostman.com/collections/b99863b0cde7565a32fc.
365
JakobKriegb708ee62020-09-08 17:34:30 +0200366A detailed description of the usage of different APIs of CDS will follow.
JakobKriegf47eeee2020-08-17 21:04:35 +0200367
Singal, Kapil (ks220y)51e7c122020-09-25 17:22:54 -0400368
JakobKriegf47eeee2020-08-17 21:04:35 +0200369Possible Fixes
Singal, Kapil (ks220y)51e7c122020-09-25 17:22:54 -0400370~~~~~~~~~~~~~~
JakobKriegf47eeee2020-08-17 21:04:35 +0200371
372Imported packages or annotiations are not found, Run Config not available?
373*****************************************************************************
374
3751. Rebuild with ``maven install ...`` (see above)
3762. Potentially change Maven home directory in Settings
3773. Maven reimport in IDE
378
379Compilation error?
Singal, Kapil (ks220y)51e7c122020-09-25 17:22:54 -0400380*******************
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400381* Change Java Version to 11
JakobKriegf47eeee2020-08-17 21:04:35 +0200382
JakobKrieg668466f2020-08-27 16:36:38 +0200383
384.. image alignment inside tabs doesn't work
385
JakobKriegf47eeee2020-08-17 21:04:35 +0200386.. |imageRunConfigJava| image:: media/run_config_java.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400387 :width: 500pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200388 :align: middle
389
390.. |imageRunConfigKt| image:: media/run_config_kt.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400391 :width: 500pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200392 :align: middle
393
394.. |imageCreateRunConfigJava| image:: media/create_run_config_java.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400395 :width: 500pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200396 :align: middle
397
398.. |imageCreateRunConfigKt| image:: media/create_run_config_kt.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400399 :width: 500pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200400 :align: middle
401
402.. |imageImportProject| image:: media/import_project.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400403 :width: 300pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200404 :align: middle
405
406.. |imageReimportMaven| image:: media/reimport_maven.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400407 :width: 400pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200408 :align: middle
409
410.. |imageRunDebug| image:: media/run_debug.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400411 :width: 500pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200412 :align: middle
413
JakobKriegf47eeee2020-08-17 21:04:35 +0200414.. |imageBuildLogs| image:: media/build_logs.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400415 :width: 500pt
JakobKriegf47eeee2020-08-17 21:04:35 +0200416 :align: middle
JakobKrieg668466f2020-08-27 16:36:38 +0200417
418.. |imageLogsVSC| image:: media/vsc_logs.png
Singal, Kapil (ks220y)f1aafc42020-09-24 12:47:56 -0400419 :width: 500pt
JakobKrieg668466f2020-08-27 16:36:38 +0200420 :align: middle
JakobKrieg4fe1cfb2020-11-05 13:56:40 +0100421
422.. |imageRunConfigSetUp| image:: media/run-config-set-up.png
423 :width: 500pt
424 :align: middle