diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..2589d21 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,21 @@ +# Contributing to Microsoft Learning Repositories + +MCT contributions are a key part of keeping the lab and demo content current as the Azure platform changes. We want to make it as easy as possible for you to contribute changes to the lab files. Here are a few guidelines to keep in mind as you contribute changes. + +## GitHub Use & Purpose + +Microsoft Learning is using GitHub to publish the lab steps and lab scripts for courses that cover cloud services like Azure. Using GitHub allows the course’s authors and MCTs to keep the lab content current with Azure platform changes. Using GitHub allows the MCTs to provide feedback and suggestions for lab changes, and then the course authors can update lab steps and scripts quickly and relatively easily. + +> When you prepare to teach these courses, you should ensure that you are using the latest lab steps and scripts by downloading the appropriate files from GitHub. GitHub should not be used to discuss technical content in the course, or how to prep. It should only be used to address changes in the labs. + +It is strongly recommended that MCTs and Partners access these materials and in turn, provide them separately to students. Pointing students directly to GitHub to access Lab steps as part of an ongoing class will require them to access yet another UI as part of the course, contributing to a confusing experience for the student. An explanation to the student regarding why they are receiving separate Lab instructions can highlight the nature of an always-changing cloud-based interface and platform. Microsoft Learning support for accessing files on GitHub and support for navigation of the GitHub site is limited to MCTs teaching this course only. + +> As an alternative to pointing students directly to the GitHub repository, you can point students to the GitHub Pages website to view the lab instructions. The URL for the GitHub Pages website can be found at the top of the repository. + +To address general comments about the course and demos, or how to prepare for a course delivery, please use the existing MCT forums. + +## Additional Resources + +A user guide has been provided for MCTs who are new to GitHub. It provides steps for connecting to GitHub, downloading and printing course materials, updating the scripts that students use in labs, and explaining how you can help ensure that this course’s content remains current. + + diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..4dd6247 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,12 @@ +# Module: 00 +## Lab/Demo: 00 +### Task: 00 +#### Step: 00 + +Description of issue + +Repro steps: + +1. +1. +1. \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..a593e56 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,10 @@ +# Module: 00 +## Lab/Demo: 00 + +Fixes # . + +Changes proposed in this pull request: + +- +- +- \ No newline at end of file diff --git a/Instructions/Exercises/media/azure-ai-project.png b/Instructions/Exercises/media/azure-ai-project.png new file mode 100644 index 0000000..345ec94 Binary files /dev/null and b/Instructions/Exercises/media/azure-ai-project.png differ diff --git a/Instructions/Exercises/media/azure-ai-resource.png b/Instructions/Exercises/media/azure-ai-resource.png new file mode 100644 index 0000000..a11682e Binary files /dev/null and b/Instructions/Exercises/media/azure-ai-resource.png differ diff --git a/Instructions/Exercises/media/azure-ai-studio-home.png b/Instructions/Exercises/media/azure-ai-studio-home.png new file mode 100644 index 0000000..6d0d6b1 Binary files /dev/null and b/Instructions/Exercises/media/azure-ai-studio-home.png differ diff --git a/Instructions/Exercises/media/azure-portal.png b/Instructions/Exercises/media/azure-portal.png new file mode 100644 index 0000000..9769e09 Binary files /dev/null and b/Instructions/Exercises/media/azure-portal.png differ diff --git a/Instructions/Exercises/media/chat-flow.png b/Instructions/Exercises/media/chat-flow.png new file mode 100644 index 0000000..2c543d0 Binary files /dev/null and b/Instructions/Exercises/media/chat-flow.png differ diff --git a/Instructions/Exercises/media/get-started-lab.png b/Instructions/Exercises/media/get-started-lab.png new file mode 100644 index 0000000..7ecc2fa Binary files /dev/null and b/Instructions/Exercises/media/get-started-lab.png differ diff --git a/Instructions/Exercises/media/get-started-prompt-flow-use-case.gif b/Instructions/Exercises/media/get-started-prompt-flow-use-case.gif new file mode 100644 index 0000000..1751073 Binary files /dev/null and b/Instructions/Exercises/media/get-started-prompt-flow-use-case.gif differ diff --git a/Instructions/Exercises/media/playground.png b/Instructions/Exercises/media/playground.png new file mode 100644 index 0000000..1d687e6 Binary files /dev/null and b/Instructions/Exercises/media/playground.png differ diff --git a/Instructions/Exercises/media/web-app.png b/Instructions/Exercises/media/web-app.png new file mode 100644 index 0000000..dda8beb Binary files /dev/null and b/Instructions/Exercises/media/web-app.png differ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9ac2500 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Sidney Andrews + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/_build.yml b/_build.yml new file mode 100644 index 0000000..2d118cd --- /dev/null +++ b/_build.yml @@ -0,0 +1,36 @@ +name: '$(Date:yyyyMMdd)$(Rev:.rr)' +jobs: + - job: build_markdown_content + displayName: 'Build Markdown Content' + workspace: + clean: all + pool: + vmImage: 'Ubuntu 16.04' + container: + image: 'microsoftlearning/markdown-build:latest' + steps: + - task: Bash@3 + displayName: 'Build Content' + inputs: + targetType: inline + script: | + cp /{attribution.md,template.docx,package.json,package.js} . + npm install + node package.js --version $(Build.BuildNumber) + - task: GitHubRelease@0 + displayName: 'Create GitHub Release' + inputs: + gitHubConnection: 'github-microsoftlearning-organization' + repositoryName: '$(Build.Repository.Name)' + tagSource: manual + tag: 'v$(Build.BuildNumber)' + title: 'Version $(Build.BuildNumber)' + releaseNotesSource: input + releaseNotes: '# Version $(Build.BuildNumber) Release' + assets: '$(Build.SourcesDirectory)/out/*.zip' + assetUploadMode: replace + - task: PublishBuildArtifacts@1 + displayName: 'Publish Output Files' + inputs: + pathtoPublish: '$(Build.SourcesDirectory)/out/' + artifactName: 'Lab Files' diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..91272fc --- /dev/null +++ b/_config.yml @@ -0,0 +1,17 @@ +remote_theme: MicrosoftLearning/Jekyll-Theme +exclude: + - readme.md + - .github/ +header_pages: + - index.html +author: Microsoft Learning +twitter_username: mslearning +github_username: MicrosoftLearning +plugins: + - jekyll-sitemap + - jekyll-mentions + - jemoji +markdown: kramdown +kramdown: + syntax_highlighter_opts: + disable : true diff --git a/data/brochures.zip b/data/brochures.zip new file mode 100644 index 0000000..19c5400 Binary files /dev/null and b/data/brochures.zip differ