diff --git a/docs/extensions/testing-extensions.md b/docs/extensions/testing-extensions.md index 8c5c5404..c3251064 100644 --- a/docs/extensions/testing-extensions.md +++ b/docs/extensions/testing-extensions.md @@ -92,7 +92,7 @@ To enable this test command, open your `package.json` and add the following entr You can then enable Travis CI easily with a top-level `.travis.yml` configuration like this: -```yaml +```yml sudo: false os: diff --git a/docs/java/java-serverless.md b/docs/java/java-serverless.md index 0bf304db..674533aa 100644 --- a/docs/java/java-serverless.md +++ b/docs/java/java-serverless.md @@ -64,7 +64,7 @@ mvn archetype:generate ^ Maven prompts you for values needed to finish generating the project. For `groupId`, `artifactId`, and `version` values, see the [Maven naming conventions](https://maven.apache.org/guides/mini/guide-naming-conventions.html) reference. The `appName` value must be unique across Azure, so Maven generates an app name based on the previously entered `artifactId` as a default. The `packageName` value determines the Java package for the generated function code. -```Output +```bash Define value for property 'groupId': com.fabrikam.functions Define value for property 'artifactId' : fabrikam-functions Define value for property 'version' 1.0-SNAPSHOT : @@ -97,7 +97,7 @@ mvn azure-functions:run You see this output when the function is running: -```Output +```bash Listening on http://localhost:7071 Hit `kbstyle(Ctrl+C)` to exit. @@ -112,7 +112,7 @@ Trigger the function from the command line using curl in a new terminal: curl -w '\n' -d LocalFunction http://localhost:7071/api/hello ``` -```Output +```bash Hello LocalFunction! ``` @@ -129,7 +129,7 @@ mvn azure-functions:deploy When the deploy is complete, you see the URL you can use to access your Azure function app: -```output +```bash [INFO] Successfully deployed Function App with package. [INFO] Deleting deployment package from Azure Storage... [INFO] Successfully deleted deployment package fabrikam-function-20170920120101928.20170920143621915.zip @@ -145,7 +145,7 @@ curl -w '\n' https://fabrikam-function-20170920120101928.azurewebsites.net/api/h You should see: -```Output +```bash Hello AzureFunctions! ``` diff --git a/release-notes/v1_8.md b/release-notes/v1_8.md index 12b8ac4d..8aa5dd91 100644 --- a/release-notes/v1_8.md +++ b/release-notes/v1_8.md @@ -421,7 +421,8 @@ To use this feature add an attribute `envFile` to your launch config and specify Any environment variable specified in the `env` dictionary will override variables loaded from the file. Here is an example for an '.env' file: -```yaml + +```yml USER=doe PASSWORD=abc123