├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── frontend ├── angular │ └── Readme.md └── react │ └── README.md ├── hackathon ├── README.md ├── dev │ ├── .devcontainer │ │ ├── Dockerfile │ │ ├── devcontainer.json │ │ ├── docker-compose.yml │ │ └── mssql │ │ │ ├── installSQLtools.sh │ │ │ ├── postCreateCommand.sh │ │ │ └── setup.sql │ ├── .github │ │ └── workflows │ │ │ └── build-deploy-app.yml │ ├── README.md │ └── devcertificate.pfx └── ops │ ├── .devcontainer │ └── devcontainer.json │ ├── .github │ └── workflows │ │ └── deploy-infrastructure.yml │ └── README.md ├── refactoring ├── java │ ├── .github │ │ └── copilot-instructions.md │ ├── README.md │ ├── READMEFUNC.md │ ├── READMETECH.md │ └── READMErefact.md └── python │ ├── .github │ └── copilot-instructions.md │ ├── README.md │ └── READMErefact.md ├── testing ├── datalab │ ├── README.md │ └── datasets │ │ └── 2021.csv ├── java │ ├── .mvn │ │ └── wrapper │ │ │ └── maven-wrapper.properties │ ├── README.md │ ├── SONAR.md │ ├── docs │ │ ├── image-1.png │ │ ├── image-10.png │ │ ├── image-11.png │ │ ├── image-12.png │ │ ├── image-13.png │ │ ├── image-14.png │ │ ├── image-15.png │ │ ├── image-16.png │ │ ├── image-2.png │ │ ├── image-3.png │ │ ├── image-4.png │ │ ├── image-5.png │ │ ├── image-6.png │ │ ├── image-7.png │ │ ├── image-8.png │ │ ├── image-9.png │ │ └── image.png │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── demo │ │ │ │ ├── DemoApplication.java │ │ │ │ ├── controller │ │ │ │ └── EmployeeController.java │ │ │ │ ├── model │ │ │ │ └── Employee.java │ │ │ │ ├── repository │ │ │ │ └── EmployeeRepository.java │ │ │ │ └── service │ │ │ │ └── EmployeeService.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── demo │ │ └── DemoApplicationTests.java └── python-pokemon │ ├── .github │ └── copilot-instructions.md │ └── README.md └── troubleshootinganddoc ├── java ├── .github │ └── copilot-instructions.md ├── .mvn │ └── wrapper │ │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── demo │ │ │ ├── DemoApplication.java │ │ │ ├── controller │ │ │ └── EmployeeController.java │ │ │ ├── model │ │ │ └── Employee.java │ │ │ ├── repository │ │ │ └── EmployeeRepository.java │ │ │ └── service │ │ │ └── EmployeeService.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── example │ └── demo │ ├── DemoApplicationTests.java │ ├── controller │ └── EmployeeControllerTest.java │ ├── repository │ └── EmployeeRepositoryTest.java │ └── service │ └── EmployeeServiceTest.java └── python └── employee-management ├── README.md ├── app ├── README.md ├── __init__.py ├── app.py ├── controllers │ └── employee_controller.py ├── models │ └── employee.py ├── routes │ └── employee_routes.py └── test_employee.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /frontend/angular/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/frontend/angular/Readme.md -------------------------------------------------------------------------------- /frontend/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/frontend/react/README.md -------------------------------------------------------------------------------- /hackathon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/hackathon/README.md -------------------------------------------------------------------------------- /hackathon/dev/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/hackathon/dev/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /hackathon/dev/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/hackathon/dev/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /hackathon/dev/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/hackathon/dev/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /hackathon/dev/.devcontainer/mssql/installSQLtools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/hackathon/dev/.devcontainer/mssql/installSQLtools.sh -------------------------------------------------------------------------------- /hackathon/dev/.devcontainer/mssql/postCreateCommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/hackathon/dev/.devcontainer/mssql/postCreateCommand.sh -------------------------------------------------------------------------------- /hackathon/dev/.devcontainer/mssql/setup.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE ApplicationDB; 2 | GO -------------------------------------------------------------------------------- /hackathon/dev/.github/workflows/build-deploy-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/hackathon/dev/.github/workflows/build-deploy-app.yml -------------------------------------------------------------------------------- /hackathon/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/hackathon/dev/README.md -------------------------------------------------------------------------------- /hackathon/dev/devcertificate.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/hackathon/dev/devcertificate.pfx -------------------------------------------------------------------------------- /hackathon/ops/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/hackathon/ops/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /hackathon/ops/.github/workflows/deploy-infrastructure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/hackathon/ops/.github/workflows/deploy-infrastructure.yml -------------------------------------------------------------------------------- /hackathon/ops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/hackathon/ops/README.md -------------------------------------------------------------------------------- /refactoring/java/.github/copilot-instructions.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /refactoring/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/refactoring/java/README.md -------------------------------------------------------------------------------- /refactoring/java/READMEFUNC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/refactoring/java/READMEFUNC.md -------------------------------------------------------------------------------- /refactoring/java/READMETECH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/refactoring/java/READMETECH.md -------------------------------------------------------------------------------- /refactoring/java/READMErefact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/refactoring/java/READMErefact.md -------------------------------------------------------------------------------- /refactoring/python/.github/copilot-instructions.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /refactoring/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/refactoring/python/README.md -------------------------------------------------------------------------------- /refactoring/python/READMErefact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/refactoring/python/READMErefact.md -------------------------------------------------------------------------------- /testing/datalab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/datalab/README.md -------------------------------------------------------------------------------- /testing/datalab/datasets/2021.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/datalab/datasets/2021.csv -------------------------------------------------------------------------------- /testing/java/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /testing/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/README.md -------------------------------------------------------------------------------- /testing/java/SONAR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/SONAR.md -------------------------------------------------------------------------------- /testing/java/docs/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-1.png -------------------------------------------------------------------------------- /testing/java/docs/image-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-10.png -------------------------------------------------------------------------------- /testing/java/docs/image-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-11.png -------------------------------------------------------------------------------- /testing/java/docs/image-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-12.png -------------------------------------------------------------------------------- /testing/java/docs/image-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-13.png -------------------------------------------------------------------------------- /testing/java/docs/image-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-14.png -------------------------------------------------------------------------------- /testing/java/docs/image-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-15.png -------------------------------------------------------------------------------- /testing/java/docs/image-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-16.png -------------------------------------------------------------------------------- /testing/java/docs/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-2.png -------------------------------------------------------------------------------- /testing/java/docs/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-3.png -------------------------------------------------------------------------------- /testing/java/docs/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-4.png -------------------------------------------------------------------------------- /testing/java/docs/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-5.png -------------------------------------------------------------------------------- /testing/java/docs/image-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-6.png -------------------------------------------------------------------------------- /testing/java/docs/image-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-7.png -------------------------------------------------------------------------------- /testing/java/docs/image-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-8.png -------------------------------------------------------------------------------- /testing/java/docs/image-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image-9.png -------------------------------------------------------------------------------- /testing/java/docs/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/docs/image.png -------------------------------------------------------------------------------- /testing/java/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/mvnw -------------------------------------------------------------------------------- /testing/java/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/mvnw.cmd -------------------------------------------------------------------------------- /testing/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/pom.xml -------------------------------------------------------------------------------- /testing/java/src/main/java/com/example/demo/DemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/src/main/java/com/example/demo/DemoApplication.java -------------------------------------------------------------------------------- /testing/java/src/main/java/com/example/demo/controller/EmployeeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/src/main/java/com/example/demo/controller/EmployeeController.java -------------------------------------------------------------------------------- /testing/java/src/main/java/com/example/demo/model/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/src/main/java/com/example/demo/model/Employee.java -------------------------------------------------------------------------------- /testing/java/src/main/java/com/example/demo/repository/EmployeeRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/src/main/java/com/example/demo/repository/EmployeeRepository.java -------------------------------------------------------------------------------- /testing/java/src/main/java/com/example/demo/service/EmployeeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/src/main/java/com/example/demo/service/EmployeeService.java -------------------------------------------------------------------------------- /testing/java/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=demo 2 | -------------------------------------------------------------------------------- /testing/java/src/test/java/com/example/demo/DemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/java/src/test/java/com/example/demo/DemoApplicationTests.java -------------------------------------------------------------------------------- /testing/python-pokemon/.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/python-pokemon/.github/copilot-instructions.md -------------------------------------------------------------------------------- /testing/python-pokemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/testing/python-pokemon/README.md -------------------------------------------------------------------------------- /troubleshootinganddoc/java/.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/.github/copilot-instructions.md -------------------------------------------------------------------------------- /troubleshootinganddoc/java/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /troubleshootinganddoc/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/README.md -------------------------------------------------------------------------------- /troubleshootinganddoc/java/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/mvnw -------------------------------------------------------------------------------- /troubleshootinganddoc/java/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/mvnw.cmd -------------------------------------------------------------------------------- /troubleshootinganddoc/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/pom.xml -------------------------------------------------------------------------------- /troubleshootinganddoc/java/src/main/java/com/example/demo/DemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/src/main/java/com/example/demo/DemoApplication.java -------------------------------------------------------------------------------- /troubleshootinganddoc/java/src/main/java/com/example/demo/controller/EmployeeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/src/main/java/com/example/demo/controller/EmployeeController.java -------------------------------------------------------------------------------- /troubleshootinganddoc/java/src/main/java/com/example/demo/model/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/src/main/java/com/example/demo/model/Employee.java -------------------------------------------------------------------------------- /troubleshootinganddoc/java/src/main/java/com/example/demo/repository/EmployeeRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/src/main/java/com/example/demo/repository/EmployeeRepository.java -------------------------------------------------------------------------------- /troubleshootinganddoc/java/src/main/java/com/example/demo/service/EmployeeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/src/main/java/com/example/demo/service/EmployeeService.java -------------------------------------------------------------------------------- /troubleshootinganddoc/java/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=demo 2 | -------------------------------------------------------------------------------- /troubleshootinganddoc/java/src/test/java/com/example/demo/DemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/src/test/java/com/example/demo/DemoApplicationTests.java -------------------------------------------------------------------------------- /troubleshootinganddoc/java/src/test/java/com/example/demo/controller/EmployeeControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/src/test/java/com/example/demo/controller/EmployeeControllerTest.java -------------------------------------------------------------------------------- /troubleshootinganddoc/java/src/test/java/com/example/demo/repository/EmployeeRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/src/test/java/com/example/demo/repository/EmployeeRepositoryTest.java -------------------------------------------------------------------------------- /troubleshootinganddoc/java/src/test/java/com/example/demo/service/EmployeeServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/java/src/test/java/com/example/demo/service/EmployeeServiceTest.java -------------------------------------------------------------------------------- /troubleshootinganddoc/python/employee-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/python/employee-management/README.md -------------------------------------------------------------------------------- /troubleshootinganddoc/python/employee-management/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/python/employee-management/app/README.md -------------------------------------------------------------------------------- /troubleshootinganddoc/python/employee-management/app/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is intentionally left blank. -------------------------------------------------------------------------------- /troubleshootinganddoc/python/employee-management/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/python/employee-management/app/app.py -------------------------------------------------------------------------------- /troubleshootinganddoc/python/employee-management/app/controllers/employee_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/python/employee-management/app/controllers/employee_controller.py -------------------------------------------------------------------------------- /troubleshootinganddoc/python/employee-management/app/models/employee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/python/employee-management/app/models/employee.py -------------------------------------------------------------------------------- /troubleshootinganddoc/python/employee-management/app/routes/employee_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/python/employee-management/app/routes/employee_routes.py -------------------------------------------------------------------------------- /troubleshootinganddoc/python/employee-management/app/test_employee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/python/employee-management/app/test_employee.py -------------------------------------------------------------------------------- /troubleshootinganddoc/python/employee-management/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/github-copilot-workshops-labs/HEAD/troubleshootinganddoc/python/employee-management/requirements.txt --------------------------------------------------------------------------------