├── .azdo └── pipelines │ └── azure-dev.yml ├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .flake8 ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── ISSUE_TEMPLATE.md │ ├── bug_report.md │ ├── feature_request.md │ └── subtask.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── Create-Release.yml │ ├── azure-dev.yml │ ├── broken-links-checker.yml │ ├── build-docker-images.yml │ ├── build-docker.yml │ ├── deploy.yml │ ├── pr-title-checker.yml │ ├── pylint.yml │ ├── scheduled-Dependabot-PRs-Auto-Merge.yml │ ├── stale-bot.yml │ ├── telemetry-template-check.yml │ ├── test-automation.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── TRANSPARENCY_FAQS.md ├── azure.yaml ├── azure_custom.yaml ├── data └── informix │ ├── functions │ ├── f1.sql │ ├── f10.sql │ ├── f2.sql │ ├── f3.sql │ ├── f4.sql │ ├── f5.sql │ ├── f6.sql │ ├── f7.sql │ ├── f8.sql │ └── f9.sql │ └── simple │ ├── q1_informix.sql │ ├── q1_tsql.sql │ ├── q2_informix.sql │ ├── q2_tsql.sql │ ├── q3_informix.sql │ ├── q3_tsql.sql │ ├── q4_informix.sql │ ├── q4_tsql.sql │ ├── q5_informix.sql │ ├── q5_tsql.sql │ ├── q6_informix.sql │ ├── q6_tsql.sql │ ├── q7_informix.sql │ └── q7_tsql.sql ├── docker ├── Backend.Dockerfile ├── Frontend.Dockerfile └── docker-compose.yml ├── docs ├── AVMPostDeploymentGuide.md ├── AddAuthentication.md ├── ArchitectureWAF.md ├── AzureAccountSetUp.md ├── AzureGPTQuotaSettings.md ├── CmsaArchitectureSource.pptx ├── CustomizingAzdParameters.md ├── CustomizingScenario.md ├── DeleteResourceGroup.md ├── DeploymentGuide.md ├── EXAMPLE-CustomizingAzdParameters.md ├── LocalSetupGuide.md ├── LogAnalyticsReplicationDisable.md ├── SampleWorkflow.md ├── TroubleShootingSteps.md ├── images │ ├── AzureHomePage.png │ ├── add_authentication │ │ ├── app_auth.png │ │ ├── app_reg_1.png │ │ ├── app_reg_2.png │ │ ├── app_reg_3.png │ │ ├── client_id.png │ │ ├── front_end.png │ │ ├── platform_config.png │ │ ├── redirect_url.png │ │ ├── single_page.png │ │ └── single_page_2.png │ ├── delete_resource │ │ ├── DeleteRG.png │ │ ├── deleteservices.png │ │ ├── resource-groups.png │ │ └── resourcegroup.png │ ├── macae_waf_prompt.png │ ├── re_use_log │ │ ├── logAnalytics.png │ │ ├── logAnalyticsJson.png │ │ └── logAnalyticsList.png │ ├── read_me │ │ ├── agentArchitecture.png │ │ ├── business-scenario.png │ │ ├── customerTruth.png │ │ ├── git_bash.png │ │ ├── keyFeatures.png │ │ ├── keyFeaturesDark.png │ │ ├── keyFeaturesLight.png │ │ ├── quick-deploy.png │ │ ├── quickDeploy.png │ │ ├── quota-check-output.png │ │ ├── solArchitecture.png │ │ ├── solArchitectureWAF.png │ │ ├── solution-overview.png │ │ ├── supporting-documentation.png │ │ ├── supportingDocuments.png │ │ ├── userStory.png │ │ └── webappHero.png │ ├── resourcegroup1.png │ └── samplecodmod1.png ├── modernize_report.pdf ├── quota_check.md └── re-use-log-analytics.md ├── infra ├── abbreviations.json ├── main.bicep ├── main.json ├── main.parameters.json ├── main.waf.parameters.json ├── main_custom.bicep ├── modules │ ├── ai-foundry │ │ ├── ai-services.bicep │ │ ├── aifoundry.bicep │ │ ├── dependencies.bicep │ │ ├── keyVaultExport.bicep │ │ └── project.bicep │ ├── cosmosDb.bicep │ ├── customTypes.bicep │ ├── keyVault.bicep │ ├── storageAccount.bicep │ └── virtualNetwork.bicep ├── samples │ ├── network-subnet-design.bicep │ ├── network │ │ ├── bastionHost.bicep │ │ ├── jumpbox.bicep │ │ ├── network-resources.bicep │ │ └── virtualNetwork.bicep │ └── network_subnet_design.md └── vscode_web │ ├── .env │ ├── .gitignore │ ├── LICENSE │ ├── README-noazd.md │ ├── README.md │ ├── codeSample.py │ ├── endpoint-requirements.txt │ ├── endpointCodeSample.py │ ├── index.json │ ├── install.sh │ └── requirements.txt ├── scripts ├── checkquota.sh ├── quota_check_params.sh ├── validate_model_deployment_quota.ps1 ├── validate_model_deployment_quota.sh ├── validate_model_quota.ps1 └── validate_model_quota.sh ├── src ├── backend │ ├── .env.sample │ ├── Dockerfile │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── api_routes.py │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── auth_utils.py │ │ │ └── sample_user.py │ │ ├── event_utils.py │ │ └── status_updates.py │ ├── app.py │ ├── common │ │ ├── __init__.py │ │ ├── config │ │ │ └── config.py │ │ ├── database │ │ │ ├── __init__.py │ │ │ ├── cosmosdb.py │ │ │ ├── database_base.py │ │ │ └── database_factory.py │ │ ├── logger │ │ │ ├── __init__.py │ │ │ └── app_logger.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── api.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ └── batch_service.py │ │ └── storage │ │ │ ├── __init__.py │ │ │ ├── blob_azure.py │ │ │ ├── blob_base.py │ │ │ └── blob_factory.py │ ├── flake8.txt │ ├── helper │ │ └── azure_credential_utils.py │ ├── mypy.ini │ ├── pyproject.toml │ ├── requirements.txt │ └── sql_agents │ │ ├── __init__.py │ │ ├── agent_manager.py │ │ ├── agents │ │ ├── agent_base.py │ │ ├── agent_config.py │ │ ├── agent_factory.py │ │ ├── fixer │ │ │ ├── __init__.py │ │ │ ├── agent.py │ │ │ ├── prompt.txt │ │ │ ├── response.py │ │ │ └── setup.py │ │ ├── migrator │ │ │ ├── __init__.py │ │ │ ├── agent.py │ │ │ ├── prompt.txt │ │ │ ├── response.py │ │ │ └── setup.py │ │ ├── picker │ │ │ ├── __init__.py │ │ │ ├── agent.py │ │ │ ├── prompt.txt │ │ │ ├── response.py │ │ │ └── setup.py │ │ ├── semantic_verifier │ │ │ ├── __init__.py │ │ │ ├── agent.py │ │ │ ├── prompt.txt │ │ │ ├── response.py │ │ │ └── setup.py │ │ └── syntax_checker │ │ │ ├── __init__.py │ │ │ ├── agent.py │ │ │ ├── plug_ins.py │ │ │ ├── prompt.txt │ │ │ ├── response.py │ │ │ └── setup.py │ │ ├── convert_script.py │ │ ├── helpers │ │ ├── __init__.py │ │ ├── agents_manager.py │ │ ├── comms_manager.py │ │ ├── models.py │ │ └── utils.py │ │ ├── process_batch.py │ │ └── tools │ │ ├── linux-x64 │ │ └── tsqlParser │ │ ├── src │ │ ├── Program.cs │ │ ├── tsqlParser.csproj │ │ └── tsqlParser.sln │ │ └── win-x64 │ │ └── tsqlParser.exe ├── frontend │ ├── .env.sample │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── declarations.d.ts │ ├── eslint.config.js │ ├── frontend_server.py │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ └── images │ │ │ ├── Arrow-Upload.png │ │ │ ├── Checkmark.png │ │ │ ├── Contoso.png │ │ │ ├── Docicon.png │ │ │ └── progress.png │ ├── requirements.txt │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── api │ │ │ ├── WebSocketService.tsx │ │ │ ├── config.js │ │ │ ├── uploadService.ts │ │ │ └── utils.tsx │ │ ├── authUtils.ts │ │ ├── commonComponents │ │ │ └── ConfirmationDialog │ │ │ │ └── confirmationDialogue.tsx │ │ ├── components │ │ │ ├── Content │ │ │ │ ├── Content.tsx │ │ │ │ └── ContentToolbar.tsx │ │ │ ├── Header │ │ │ │ ├── Header.tsx │ │ │ │ ├── HeaderTools.tsx │ │ │ │ └── PanelRightToggles.tsx │ │ │ ├── MsftColor.tsx │ │ │ ├── Panels │ │ │ │ ├── PanelLeft.tsx │ │ │ │ ├── PanelLeftToolbar.tsx │ │ │ │ ├── PanelRight.tsx │ │ │ │ └── PanelRightToolbar.tsx │ │ │ ├── batchHistoryPanel.css │ │ │ ├── batchHistoryPanel.tsx │ │ │ ├── bottomBar.tsx │ │ │ ├── bundleIcons.tsx │ │ │ ├── errorWarningSection.tsx │ │ │ ├── eventbus.tsx │ │ │ ├── fileItem.tsx │ │ │ ├── steps.tsx │ │ │ ├── uploadButton.tsx │ │ │ └── uploadStyles.css │ │ ├── index.css │ │ ├── main.jsx │ │ ├── msal-auth │ │ │ ├── AuthProvider.tsx │ │ │ ├── AuthWrapper.tsx │ │ │ ├── msaConfig.ts │ │ │ ├── msalInstance.tsx │ │ │ └── useAuth.ts │ │ ├── pages │ │ │ ├── batchView.tsx │ │ │ ├── landingPage.css │ │ │ ├── landingPage.tsx │ │ │ └── modernizationPage.tsx │ │ ├── services │ │ │ └── ApiService.tsx │ │ ├── slices │ │ │ ├── batchSlice.ts │ │ │ └── historyPanelSlice.ts │ │ ├── store │ │ │ └── store.ts │ │ └── types │ │ │ └── types.ts │ ├── tailwind.config.js │ └── vite.config.js └── tests │ ├── __init__.py │ ├── backend │ ├── __init__.py │ ├── app_test.py │ ├── common │ │ ├── config │ │ │ └── config_test.py │ │ ├── database │ │ │ ├── __init__.py │ │ │ ├── cosmosdb_test.py │ │ │ ├── database_base_test.py │ │ │ └── database_factory_test.py │ │ ├── logger │ │ │ └── app_logger_test.py │ │ ├── models │ │ │ └── api_test.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ └── batch_service_test.py │ │ └── storage │ │ │ ├── __init__.py │ │ │ ├── blob_azure_test.py │ │ │ ├── blob_base_test.py │ │ │ └── blob_factory_test.py │ ├── data │ │ └── sample_batch.json │ ├── helper │ │ └── azure_credential_utils_test.py │ └── sql_agents │ │ └── agents │ │ └── agent_config_test.py │ └── conftest.py └── tests └── e2e-test ├── .gitignore ├── base ├── __init__.py └── base.py ├── config └── constants.py ├── pages ├── HomePage.py ├── __init__.py └── loginPage.py ├── pytest.ini ├── readme.MD ├── requirements.txt ├── testdata ├── f1.sql ├── f2.sql ├── invalid.py └── q1_informix.sql └── tests ├── __init__.py ├── conftest.py └── test_codegen_gp_tc.py /.azdo/pipelines/azure-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.azdo/pipelines/azure-dev.yml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/subtask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/ISSUE_TEMPLATE/subtask.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/Create-Release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/workflows/Create-Release.yml -------------------------------------------------------------------------------- /.github/workflows/azure-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/workflows/azure-dev.yml -------------------------------------------------------------------------------- /.github/workflows/broken-links-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/workflows/broken-links-checker.yml -------------------------------------------------------------------------------- /.github/workflows/build-docker-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/workflows/build-docker-images.yml -------------------------------------------------------------------------------- /.github/workflows/build-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/workflows/build-docker.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/workflows/pr-title-checker.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-Dependabot-PRs-Auto-Merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/workflows/scheduled-Dependabot-PRs-Auto-Merge.yml -------------------------------------------------------------------------------- /.github/workflows/stale-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/workflows/stale-bot.yml -------------------------------------------------------------------------------- /.github/workflows/telemetry-template-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/workflows/telemetry-template-check.yml -------------------------------------------------------------------------------- /.github/workflows/test-automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/workflows/test-automation.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /TRANSPARENCY_FAQS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/TRANSPARENCY_FAQS.md -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/azure.yaml -------------------------------------------------------------------------------- /azure_custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/azure_custom.yaml -------------------------------------------------------------------------------- /data/informix/functions/f1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/functions/f1.sql -------------------------------------------------------------------------------- /data/informix/functions/f10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/functions/f10.sql -------------------------------------------------------------------------------- /data/informix/functions/f2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/functions/f2.sql -------------------------------------------------------------------------------- /data/informix/functions/f3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/functions/f3.sql -------------------------------------------------------------------------------- /data/informix/functions/f4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/functions/f4.sql -------------------------------------------------------------------------------- /data/informix/functions/f5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/functions/f5.sql -------------------------------------------------------------------------------- /data/informix/functions/f6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/functions/f6.sql -------------------------------------------------------------------------------- /data/informix/functions/f7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/functions/f7.sql -------------------------------------------------------------------------------- /data/informix/functions/f8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/functions/f8.sql -------------------------------------------------------------------------------- /data/informix/functions/f9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/functions/f9.sql -------------------------------------------------------------------------------- /data/informix/simple/q1_informix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/simple/q1_informix.sql -------------------------------------------------------------------------------- /data/informix/simple/q1_tsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/simple/q1_tsql.sql -------------------------------------------------------------------------------- /data/informix/simple/q2_informix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/simple/q2_informix.sql -------------------------------------------------------------------------------- /data/informix/simple/q2_tsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/simple/q2_tsql.sql -------------------------------------------------------------------------------- /data/informix/simple/q3_informix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/simple/q3_informix.sql -------------------------------------------------------------------------------- /data/informix/simple/q3_tsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/simple/q3_tsql.sql -------------------------------------------------------------------------------- /data/informix/simple/q4_informix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/simple/q4_informix.sql -------------------------------------------------------------------------------- /data/informix/simple/q4_tsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/simple/q4_tsql.sql -------------------------------------------------------------------------------- /data/informix/simple/q5_informix.sql: -------------------------------------------------------------------------------- 1 | CREATE DISTINCT TYPE phone_number AS VARCHAR(20); 2 | -------------------------------------------------------------------------------- /data/informix/simple/q5_tsql.sql: -------------------------------------------------------------------------------- 1 | CREATE TYPE phone_number FROM VARCHAR(20) NOT NULL; 2 | -------------------------------------------------------------------------------- /data/informix/simple/q6_informix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/simple/q6_informix.sql -------------------------------------------------------------------------------- /data/informix/simple/q6_tsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/simple/q6_tsql.sql -------------------------------------------------------------------------------- /data/informix/simple/q7_informix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/simple/q7_informix.sql -------------------------------------------------------------------------------- /data/informix/simple/q7_tsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/data/informix/simple/q7_tsql.sql -------------------------------------------------------------------------------- /docker/Backend.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docker/Backend.Dockerfile -------------------------------------------------------------------------------- /docker/Frontend.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docker/Frontend.Dockerfile -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docs/AVMPostDeploymentGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/AVMPostDeploymentGuide.md -------------------------------------------------------------------------------- /docs/AddAuthentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/AddAuthentication.md -------------------------------------------------------------------------------- /docs/ArchitectureWAF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/ArchitectureWAF.md -------------------------------------------------------------------------------- /docs/AzureAccountSetUp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/AzureAccountSetUp.md -------------------------------------------------------------------------------- /docs/AzureGPTQuotaSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/AzureGPTQuotaSettings.md -------------------------------------------------------------------------------- /docs/CmsaArchitectureSource.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/CmsaArchitectureSource.pptx -------------------------------------------------------------------------------- /docs/CustomizingAzdParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/CustomizingAzdParameters.md -------------------------------------------------------------------------------- /docs/CustomizingScenario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/CustomizingScenario.md -------------------------------------------------------------------------------- /docs/DeleteResourceGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/DeleteResourceGroup.md -------------------------------------------------------------------------------- /docs/DeploymentGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/DeploymentGuide.md -------------------------------------------------------------------------------- /docs/EXAMPLE-CustomizingAzdParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/EXAMPLE-CustomizingAzdParameters.md -------------------------------------------------------------------------------- /docs/LocalSetupGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/LocalSetupGuide.md -------------------------------------------------------------------------------- /docs/LogAnalyticsReplicationDisable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/LogAnalyticsReplicationDisable.md -------------------------------------------------------------------------------- /docs/SampleWorkflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/SampleWorkflow.md -------------------------------------------------------------------------------- /docs/TroubleShootingSteps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/TroubleShootingSteps.md -------------------------------------------------------------------------------- /docs/images/AzureHomePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/AzureHomePage.png -------------------------------------------------------------------------------- /docs/images/add_authentication/app_auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/add_authentication/app_auth.png -------------------------------------------------------------------------------- /docs/images/add_authentication/app_reg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/add_authentication/app_reg_1.png -------------------------------------------------------------------------------- /docs/images/add_authentication/app_reg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/add_authentication/app_reg_2.png -------------------------------------------------------------------------------- /docs/images/add_authentication/app_reg_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/add_authentication/app_reg_3.png -------------------------------------------------------------------------------- /docs/images/add_authentication/client_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/add_authentication/client_id.png -------------------------------------------------------------------------------- /docs/images/add_authentication/front_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/add_authentication/front_end.png -------------------------------------------------------------------------------- /docs/images/add_authentication/platform_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/add_authentication/platform_config.png -------------------------------------------------------------------------------- /docs/images/add_authentication/redirect_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/add_authentication/redirect_url.png -------------------------------------------------------------------------------- /docs/images/add_authentication/single_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/add_authentication/single_page.png -------------------------------------------------------------------------------- /docs/images/add_authentication/single_page_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/add_authentication/single_page_2.png -------------------------------------------------------------------------------- /docs/images/delete_resource/DeleteRG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/delete_resource/DeleteRG.png -------------------------------------------------------------------------------- /docs/images/delete_resource/deleteservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/delete_resource/deleteservices.png -------------------------------------------------------------------------------- /docs/images/delete_resource/resource-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/delete_resource/resource-groups.png -------------------------------------------------------------------------------- /docs/images/delete_resource/resourcegroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/delete_resource/resourcegroup.png -------------------------------------------------------------------------------- /docs/images/macae_waf_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/macae_waf_prompt.png -------------------------------------------------------------------------------- /docs/images/re_use_log/logAnalytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/re_use_log/logAnalytics.png -------------------------------------------------------------------------------- /docs/images/re_use_log/logAnalyticsJson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/re_use_log/logAnalyticsJson.png -------------------------------------------------------------------------------- /docs/images/re_use_log/logAnalyticsList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/re_use_log/logAnalyticsList.png -------------------------------------------------------------------------------- /docs/images/read_me/agentArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/agentArchitecture.png -------------------------------------------------------------------------------- /docs/images/read_me/business-scenario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/business-scenario.png -------------------------------------------------------------------------------- /docs/images/read_me/customerTruth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/customerTruth.png -------------------------------------------------------------------------------- /docs/images/read_me/git_bash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/git_bash.png -------------------------------------------------------------------------------- /docs/images/read_me/keyFeatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/keyFeatures.png -------------------------------------------------------------------------------- /docs/images/read_me/keyFeaturesDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/keyFeaturesDark.png -------------------------------------------------------------------------------- /docs/images/read_me/keyFeaturesLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/keyFeaturesLight.png -------------------------------------------------------------------------------- /docs/images/read_me/quick-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/quick-deploy.png -------------------------------------------------------------------------------- /docs/images/read_me/quickDeploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/quickDeploy.png -------------------------------------------------------------------------------- /docs/images/read_me/quota-check-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/quota-check-output.png -------------------------------------------------------------------------------- /docs/images/read_me/solArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/solArchitecture.png -------------------------------------------------------------------------------- /docs/images/read_me/solArchitectureWAF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/solArchitectureWAF.png -------------------------------------------------------------------------------- /docs/images/read_me/solution-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/solution-overview.png -------------------------------------------------------------------------------- /docs/images/read_me/supporting-documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/supporting-documentation.png -------------------------------------------------------------------------------- /docs/images/read_me/supportingDocuments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/supportingDocuments.png -------------------------------------------------------------------------------- /docs/images/read_me/userStory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/userStory.png -------------------------------------------------------------------------------- /docs/images/read_me/webappHero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/read_me/webappHero.png -------------------------------------------------------------------------------- /docs/images/resourcegroup1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/resourcegroup1.png -------------------------------------------------------------------------------- /docs/images/samplecodmod1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/images/samplecodmod1.png -------------------------------------------------------------------------------- /docs/modernize_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/modernize_report.pdf -------------------------------------------------------------------------------- /docs/quota_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/quota_check.md -------------------------------------------------------------------------------- /docs/re-use-log-analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/docs/re-use-log-analytics.md -------------------------------------------------------------------------------- /infra/abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/abbreviations.json -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/main.json -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /infra/main.waf.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/main.waf.parameters.json -------------------------------------------------------------------------------- /infra/main_custom.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/main_custom.bicep -------------------------------------------------------------------------------- /infra/modules/ai-foundry/ai-services.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/modules/ai-foundry/ai-services.bicep -------------------------------------------------------------------------------- /infra/modules/ai-foundry/aifoundry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/modules/ai-foundry/aifoundry.bicep -------------------------------------------------------------------------------- /infra/modules/ai-foundry/dependencies.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/modules/ai-foundry/dependencies.bicep -------------------------------------------------------------------------------- /infra/modules/ai-foundry/keyVaultExport.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/modules/ai-foundry/keyVaultExport.bicep -------------------------------------------------------------------------------- /infra/modules/ai-foundry/project.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/modules/ai-foundry/project.bicep -------------------------------------------------------------------------------- /infra/modules/cosmosDb.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/modules/cosmosDb.bicep -------------------------------------------------------------------------------- /infra/modules/customTypes.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/modules/customTypes.bicep -------------------------------------------------------------------------------- /infra/modules/keyVault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/modules/keyVault.bicep -------------------------------------------------------------------------------- /infra/modules/storageAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/modules/storageAccount.bicep -------------------------------------------------------------------------------- /infra/modules/virtualNetwork.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/modules/virtualNetwork.bicep -------------------------------------------------------------------------------- /infra/samples/network-subnet-design.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/samples/network-subnet-design.bicep -------------------------------------------------------------------------------- /infra/samples/network/bastionHost.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/samples/network/bastionHost.bicep -------------------------------------------------------------------------------- /infra/samples/network/jumpbox.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/samples/network/jumpbox.bicep -------------------------------------------------------------------------------- /infra/samples/network/network-resources.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/samples/network/network-resources.bicep -------------------------------------------------------------------------------- /infra/samples/network/virtualNetwork.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/samples/network/virtualNetwork.bicep -------------------------------------------------------------------------------- /infra/samples/network_subnet_design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/samples/network_subnet_design.md -------------------------------------------------------------------------------- /infra/vscode_web/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/vscode_web/.env -------------------------------------------------------------------------------- /infra/vscode_web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/vscode_web/.gitignore -------------------------------------------------------------------------------- /infra/vscode_web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/vscode_web/LICENSE -------------------------------------------------------------------------------- /infra/vscode_web/README-noazd.md: -------------------------------------------------------------------------------- 1 | # VS Code for the Web - Azure AI Foundry Templates 2 | 3 | -------------------------------------------------------------------------------- /infra/vscode_web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/vscode_web/README.md -------------------------------------------------------------------------------- /infra/vscode_web/codeSample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/vscode_web/codeSample.py -------------------------------------------------------------------------------- /infra/vscode_web/endpoint-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/vscode_web/endpoint-requirements.txt -------------------------------------------------------------------------------- /infra/vscode_web/endpointCodeSample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/vscode_web/endpointCodeSample.py -------------------------------------------------------------------------------- /infra/vscode_web/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/vscode_web/index.json -------------------------------------------------------------------------------- /infra/vscode_web/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/vscode_web/install.sh -------------------------------------------------------------------------------- /infra/vscode_web/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/infra/vscode_web/requirements.txt -------------------------------------------------------------------------------- /scripts/checkquota.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/scripts/checkquota.sh -------------------------------------------------------------------------------- /scripts/quota_check_params.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/scripts/quota_check_params.sh -------------------------------------------------------------------------------- /scripts/validate_model_deployment_quota.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/scripts/validate_model_deployment_quota.ps1 -------------------------------------------------------------------------------- /scripts/validate_model_deployment_quota.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/scripts/validate_model_deployment_quota.sh -------------------------------------------------------------------------------- /scripts/validate_model_quota.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/scripts/validate_model_quota.ps1 -------------------------------------------------------------------------------- /scripts/validate_model_quota.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/scripts/validate_model_quota.sh -------------------------------------------------------------------------------- /src/backend/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/.env.sample -------------------------------------------------------------------------------- /src/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/Dockerfile -------------------------------------------------------------------------------- /src/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/api/api_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/api/api_routes.py -------------------------------------------------------------------------------- /src/backend/api/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/api/auth/auth_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/api/auth/auth_utils.py -------------------------------------------------------------------------------- /src/backend/api/auth/sample_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/api/auth/sample_user.py -------------------------------------------------------------------------------- /src/backend/api/event_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/api/event_utils.py -------------------------------------------------------------------------------- /src/backend/api/status_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/api/status_updates.py -------------------------------------------------------------------------------- /src/backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/app.py -------------------------------------------------------------------------------- /src/backend/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/common/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/common/config/config.py -------------------------------------------------------------------------------- /src/backend/common/database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/common/database/cosmosdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/common/database/cosmosdb.py -------------------------------------------------------------------------------- /src/backend/common/database/database_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/common/database/database_base.py -------------------------------------------------------------------------------- /src/backend/common/database/database_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/common/database/database_factory.py -------------------------------------------------------------------------------- /src/backend/common/logger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/common/logger/app_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/common/logger/app_logger.py -------------------------------------------------------------------------------- /src/backend/common/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/common/models/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/common/models/api.py -------------------------------------------------------------------------------- /src/backend/common/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/common/services/batch_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/common/services/batch_service.py -------------------------------------------------------------------------------- /src/backend/common/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/common/storage/blob_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/common/storage/blob_azure.py -------------------------------------------------------------------------------- /src/backend/common/storage/blob_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/common/storage/blob_base.py -------------------------------------------------------------------------------- /src/backend/common/storage/blob_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/common/storage/blob_factory.py -------------------------------------------------------------------------------- /src/backend/flake8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/flake8.txt -------------------------------------------------------------------------------- /src/backend/helper/azure_credential_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/helper/azure_credential_utils.py -------------------------------------------------------------------------------- /src/backend/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/mypy.ini -------------------------------------------------------------------------------- /src/backend/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/pyproject.toml -------------------------------------------------------------------------------- /src/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/requirements.txt -------------------------------------------------------------------------------- /src/backend/sql_agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/__init__.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agent_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agent_manager.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/agent_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/agent_base.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/agent_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/agent_config.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/agent_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/agent_factory.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/fixer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/fixer/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/fixer/agent.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/fixer/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/fixer/prompt.txt -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/fixer/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/fixer/response.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/fixer/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/fixer/setup.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/migrator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/migrator/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/migrator/agent.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/migrator/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/migrator/prompt.txt -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/migrator/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/migrator/response.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/migrator/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/migrator/setup.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/picker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/picker/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/picker/agent.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/picker/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/picker/prompt.txt -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/picker/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/picker/response.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/picker/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/picker/setup.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/semantic_verifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/semantic_verifier/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/semantic_verifier/agent.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/semantic_verifier/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/semantic_verifier/prompt.txt -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/semantic_verifier/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/semantic_verifier/response.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/semantic_verifier/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/semantic_verifier/setup.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/syntax_checker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/syntax_checker/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/syntax_checker/agent.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/syntax_checker/plug_ins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/syntax_checker/plug_ins.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/syntax_checker/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/syntax_checker/prompt.txt -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/syntax_checker/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/syntax_checker/response.py -------------------------------------------------------------------------------- /src/backend/sql_agents/agents/syntax_checker/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/agents/syntax_checker/setup.py -------------------------------------------------------------------------------- /src/backend/sql_agents/convert_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/convert_script.py -------------------------------------------------------------------------------- /src/backend/sql_agents/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/backend/sql_agents/helpers/agents_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/helpers/agents_manager.py -------------------------------------------------------------------------------- /src/backend/sql_agents/helpers/comms_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/helpers/comms_manager.py -------------------------------------------------------------------------------- /src/backend/sql_agents/helpers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/helpers/models.py -------------------------------------------------------------------------------- /src/backend/sql_agents/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/helpers/utils.py -------------------------------------------------------------------------------- /src/backend/sql_agents/process_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/process_batch.py -------------------------------------------------------------------------------- /src/backend/sql_agents/tools/linux-x64/tsqlParser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/tools/linux-x64/tsqlParser -------------------------------------------------------------------------------- /src/backend/sql_agents/tools/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/tools/src/Program.cs -------------------------------------------------------------------------------- /src/backend/sql_agents/tools/src/tsqlParser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/tools/src/tsqlParser.csproj -------------------------------------------------------------------------------- /src/backend/sql_agents/tools/src/tsqlParser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/tools/src/tsqlParser.sln -------------------------------------------------------------------------------- /src/backend/sql_agents/tools/win-x64/tsqlParser.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/backend/sql_agents/tools/win-x64/tsqlParser.exe -------------------------------------------------------------------------------- /src/frontend/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/.env.sample -------------------------------------------------------------------------------- /src/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/.gitignore -------------------------------------------------------------------------------- /src/frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/Dockerfile -------------------------------------------------------------------------------- /src/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/README.md -------------------------------------------------------------------------------- /src/frontend/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/declarations.d.ts -------------------------------------------------------------------------------- /src/frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/eslint.config.js -------------------------------------------------------------------------------- /src/frontend/frontend_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/frontend_server.py -------------------------------------------------------------------------------- /src/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/index.html -------------------------------------------------------------------------------- /src/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/package-lock.json -------------------------------------------------------------------------------- /src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/package.json -------------------------------------------------------------------------------- /src/frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/postcss.config.js -------------------------------------------------------------------------------- /src/frontend/public/images/Arrow-Upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/public/images/Arrow-Upload.png -------------------------------------------------------------------------------- /src/frontend/public/images/Checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/public/images/Checkmark.png -------------------------------------------------------------------------------- /src/frontend/public/images/Contoso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/public/images/Contoso.png -------------------------------------------------------------------------------- /src/frontend/public/images/Docicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/public/images/Docicon.png -------------------------------------------------------------------------------- /src/frontend/public/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/public/images/progress.png -------------------------------------------------------------------------------- /src/frontend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/requirements.txt -------------------------------------------------------------------------------- /src/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/App.css -------------------------------------------------------------------------------- /src/frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/App.jsx -------------------------------------------------------------------------------- /src/frontend/src/api/WebSocketService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/api/WebSocketService.tsx -------------------------------------------------------------------------------- /src/frontend/src/api/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/api/config.js -------------------------------------------------------------------------------- /src/frontend/src/api/uploadService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/api/uploadService.ts -------------------------------------------------------------------------------- /src/frontend/src/api/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/api/utils.tsx -------------------------------------------------------------------------------- /src/frontend/src/authUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/authUtils.ts -------------------------------------------------------------------------------- /src/frontend/src/commonComponents/ConfirmationDialog/confirmationDialogue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/commonComponents/ConfirmationDialog/confirmationDialogue.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/Content/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/Content/Content.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/Content/ContentToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/Content/ContentToolbar.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/Header/HeaderTools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/Header/HeaderTools.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/Header/PanelRightToggles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/Header/PanelRightToggles.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/MsftColor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/MsftColor.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/Panels/PanelLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/Panels/PanelLeft.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/Panels/PanelLeftToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/Panels/PanelLeftToolbar.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/Panels/PanelRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/Panels/PanelRight.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/Panels/PanelRightToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/Panels/PanelRightToolbar.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/batchHistoryPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/batchHistoryPanel.css -------------------------------------------------------------------------------- /src/frontend/src/components/batchHistoryPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/batchHistoryPanel.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/bottomBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/bottomBar.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/bundleIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/bundleIcons.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/errorWarningSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/errorWarningSection.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/eventbus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/eventbus.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/fileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/fileItem.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/steps.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/uploadButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/uploadButton.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/uploadStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/components/uploadStyles.css -------------------------------------------------------------------------------- /src/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/index.css -------------------------------------------------------------------------------- /src/frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/main.jsx -------------------------------------------------------------------------------- /src/frontend/src/msal-auth/AuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/msal-auth/AuthProvider.tsx -------------------------------------------------------------------------------- /src/frontend/src/msal-auth/AuthWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/msal-auth/AuthWrapper.tsx -------------------------------------------------------------------------------- /src/frontend/src/msal-auth/msaConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/msal-auth/msaConfig.ts -------------------------------------------------------------------------------- /src/frontend/src/msal-auth/msalInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/msal-auth/msalInstance.tsx -------------------------------------------------------------------------------- /src/frontend/src/msal-auth/useAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/msal-auth/useAuth.ts -------------------------------------------------------------------------------- /src/frontend/src/pages/batchView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/pages/batchView.tsx -------------------------------------------------------------------------------- /src/frontend/src/pages/landingPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/pages/landingPage.css -------------------------------------------------------------------------------- /src/frontend/src/pages/landingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/pages/landingPage.tsx -------------------------------------------------------------------------------- /src/frontend/src/pages/modernizationPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/pages/modernizationPage.tsx -------------------------------------------------------------------------------- /src/frontend/src/services/ApiService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/services/ApiService.tsx -------------------------------------------------------------------------------- /src/frontend/src/slices/batchSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/slices/batchSlice.ts -------------------------------------------------------------------------------- /src/frontend/src/slices/historyPanelSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/slices/historyPanelSlice.ts -------------------------------------------------------------------------------- /src/frontend/src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/store/store.ts -------------------------------------------------------------------------------- /src/frontend/src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/src/types/types.ts -------------------------------------------------------------------------------- /src/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/tailwind.config.js -------------------------------------------------------------------------------- /src/frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/frontend/vite.config.js -------------------------------------------------------------------------------- /src/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/backend/app_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/app_test.py -------------------------------------------------------------------------------- /src/tests/backend/common/config/config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/common/config/config_test.py -------------------------------------------------------------------------------- /src/tests/backend/common/database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/backend/common/database/cosmosdb_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/common/database/cosmosdb_test.py -------------------------------------------------------------------------------- /src/tests/backend/common/database/database_base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/common/database/database_base_test.py -------------------------------------------------------------------------------- /src/tests/backend/common/database/database_factory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/common/database/database_factory_test.py -------------------------------------------------------------------------------- /src/tests/backend/common/logger/app_logger_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/common/logger/app_logger_test.py -------------------------------------------------------------------------------- /src/tests/backend/common/models/api_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/common/models/api_test.py -------------------------------------------------------------------------------- /src/tests/backend/common/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/backend/common/services/batch_service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/common/services/batch_service_test.py -------------------------------------------------------------------------------- /src/tests/backend/common/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/backend/common/storage/blob_azure_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/common/storage/blob_azure_test.py -------------------------------------------------------------------------------- /src/tests/backend/common/storage/blob_base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/common/storage/blob_base_test.py -------------------------------------------------------------------------------- /src/tests/backend/common/storage/blob_factory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/common/storage/blob_factory_test.py -------------------------------------------------------------------------------- /src/tests/backend/data/sample_batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/data/sample_batch.json -------------------------------------------------------------------------------- /src/tests/backend/helper/azure_credential_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/helper/azure_credential_utils_test.py -------------------------------------------------------------------------------- /src/tests/backend/sql_agents/agents/agent_config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/backend/sql_agents/agents/agent_config_test.py -------------------------------------------------------------------------------- /src/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/src/tests/conftest.py -------------------------------------------------------------------------------- /tests/e2e-test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/tests/e2e-test/.gitignore -------------------------------------------------------------------------------- /tests/e2e-test/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e-test/base/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/tests/e2e-test/base/base.py -------------------------------------------------------------------------------- /tests/e2e-test/config/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/tests/e2e-test/config/constants.py -------------------------------------------------------------------------------- /tests/e2e-test/pages/HomePage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/tests/e2e-test/pages/HomePage.py -------------------------------------------------------------------------------- /tests/e2e-test/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e-test/pages/loginPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/tests/e2e-test/pages/loginPage.py -------------------------------------------------------------------------------- /tests/e2e-test/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/tests/e2e-test/pytest.ini -------------------------------------------------------------------------------- /tests/e2e-test/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/tests/e2e-test/readme.MD -------------------------------------------------------------------------------- /tests/e2e-test/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/tests/e2e-test/requirements.txt -------------------------------------------------------------------------------- /tests/e2e-test/testdata/f1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/tests/e2e-test/testdata/f1.sql -------------------------------------------------------------------------------- /tests/e2e-test/testdata/f2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/tests/e2e-test/testdata/f2.sql -------------------------------------------------------------------------------- /tests/e2e-test/testdata/invalid.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e-test/testdata/q1_informix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/tests/e2e-test/testdata/q1_informix.sql -------------------------------------------------------------------------------- /tests/e2e-test/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e-test/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/tests/e2e-test/tests/conftest.py -------------------------------------------------------------------------------- /tests/e2e-test/tests/test_codegen_gp_tc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Modernize-your-code-solution-accelerator/HEAD/tests/e2e-test/tests/test_codegen_gp_tc.py --------------------------------------------------------------------------------