diff options
author | Jimmy Forsyth <jf2512@att.com> | 2019-05-29 17:14:30 -0400 |
---|---|---|
committer | Jimmy Forsyth <jf2512@att.com> | 2019-05-29 17:14:32 -0400 |
commit | bbc512e0a3a1e9efcd7715626e26edd6e8bdef46 (patch) | |
tree | 8c09dda7fa8be21273e165942f40844dcf1e034f /docs/platform | |
parent | 06e46ca5f35c7dd5e2f9649082744a6f768ae107 (diff) |
Fix errors on dev env guide
Issue-ID: AAI-2461
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
Change-Id: Id548b843d29cd965741de2b387ae4e8d39e42691
Diffstat (limited to 'docs/platform')
-rw-r--r-- | docs/platform/Getting Started/AAI_Developer_Environment_Setup.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/platform/Getting Started/AAI_Developer_Environment_Setup.rst b/docs/platform/Getting Started/AAI_Developer_Environment_Setup.rst index 7c7184ce..c8afd9c1 100644 --- a/docs/platform/Getting Started/AAI_Developer_Environment_Setup.rst +++ b/docs/platform/Getting Started/AAI_Developer_Environment_Setup.rst @@ -218,7 +218,7 @@ For this exercise, I set up a new instance of Ubuntu in Virtualbox and gave it 1 Start the microservice - adjust your build version accordingly - .. code-block:: + .. code-block:: bash $ mvn -pl aai-resources -PrunAjsc -Daai.schema.version=0.0.1-TEST-SNAPSHOT -Daai.schema.ingest.version=0.0.1-TEST-SNAPSHOT -DskipTests -Dcheckstyle.skip=true @@ -230,20 +230,20 @@ For this exercise, I set up a new instance of Ubuntu in Virtualbox and gave it 1 This example uses curl from commandline - .. code-block:: + .. code-block:: bash - $ sudo apt-get install jq # for pretty output + $ sudo apt-get install jq # for pretty output Download :download:`script - test-complex <media/test-complex>` Download :download:`data - data-complex.json <media/data-complex.json>` - .. code-block:: + .. code-block:: bash $ sh ./test-complex 2>&1 | tee log.txt Confirm log.txt contains: - .. code-block:: + .. code-block:: bash > GET /aai/v16/cloud-infrastructure/complexes HTTP/1.1 @@ -266,7 +266,7 @@ For this exercise, I set up a new instance of Ubuntu in Virtualbox and gave it 1 Then followed by: - .. code-block:: + .. code-block:: bash > PUT /aai/v16/cloud-infrastructure/complexes/complex/clli2 HTTP/1.1 > GET /aai/v16/cloud-infrastructure/complexes/complex/clli2 HTTP/1.1 @@ -297,7 +297,7 @@ For this exercise, I set up a new instance of Ubuntu in Virtualbox and gave it 1 And finishes with: - .. code-block:: + .. code-block:: bash > DELETE /aai/v16/cloud-infrastructure/complexes/complex/clli2?resource-version=1543408364646 HTTP/1.1 > GET /aai/v16/cloud-infrastructure/complexes HTTP/1.1 @@ -338,7 +338,7 @@ For this exercise, I set up a new instance of Ubuntu in Virtualbox and gave it 1 .. code-block:: bash - $ mvn -pl aai-traversal -PrunAjsc -Daai.schema.version=0.0.1-TEST-SNAPSHOT -Daai.schema.ingest.version=0.0.1-TEST-SNAPSHOT -DskipTests -Dcheckstyle.skip=true + $ mvn -pl aai-traversal -PrunAjsc -Daai.schema.version=0.0.1-TEST-SNAPSHOT -Daai.schema.ingest.version=0.0.1-TEST-SNAPSHOT -DskipTests -Dcheckstyle.skip=true Should see something like this: Traversal Microservice Started |