@@ -296,8 +296,22 @@ After successful deployment:
296296### 5.2 Verify Deployment
297297
2982981 . Access your application using the URL from Step 4.3
299- 2 . Upload sample YAML files from the [ ` /data ` ] ( ../data/ ) folder
300- 3 . Test the migration functionality
299+ 2 . Confirm the application loads successfully
300+ 3 . Verify you can sign in with your authenticated account
301+
302+ ### 5.3 Test the Application
303+
304+ Follow the detailed workflow to test the migration functionality:
305+
306+ ** Quick Test Steps:**
307+ 1 . Download sample YAML files from the [ ` /data ` ] ( ../data/ ) folder (EKS or GKE samples)
308+ 2 . Upload the files to the application
309+ 3 . Click ** Start Processing** to begin the migration
310+ 4 . Monitor the batch processing status (typically takes 20-30 minutes)
311+ 5 . Review the translated files and generated reports
312+ 6 . Download the results using the ** Download all as .zip** button
313+
314+ 📖 ** Detailed Instructions:** See the complete [ Sample Workflow] ( ./SampleWorkflow.md ) guide for step-by-step testing procedures.
301315
302316## Step 6: Clean Up (Optional)
303317
@@ -409,22 +423,46 @@ azd env get-values
409423
410424# # Next Steps
411425
412- 🚀 ** Get Started: ** Follow the [Sample Workflow](./SampleWorkflow.md) to explore the application features.
426+ Now that your deployment is complete and tested, explore these resources to enhance your experience:
413427
414428📚 ** Learn More:**
415- - [Technical Architecture](./TechnicalArchitecture.md)
416- - [Troubleshooting Guide](./TroubleShootingSteps.md)
417- - [Local Development Setup](./LocalDevelopmentSetup.md)
429+ - [Technical Architecture](./TechnicalArchitecture.md) - Understand the system design and components
430+ - [Customize Expert Agents](./CustomizeExpertAgents.md) - Tailor AI agents to your specific needs
431+ - [Extend Platform Support](./ExtendPlatformSupport.md) - Add support for additional container platforms
432+ - [Configure MCP Servers](./ConfigureMCPServers.md) - Set up Model Context Protocol servers
433+ - [Local Development Setup](./LocalDevelopmentSetup.md) - Set up your local development environment
418434
419435# # Need Help?
420436
421437- 🐛 ** Issues:** Check [Troubleshooting Guide](./TroubleShootingSteps.md)
422438- 💬 ** Support:** Review [Support Guidelines](../SUPPORT.md)
423439- 🔧 ** Development:** See [Contributing Guide](../CONTRIBUTING.md)
424-
425- # ## Deploy Your local changes
426- To Deploy your local changes rename the below files.
427440
428- Rename ` azure.yaml` to ` azure_custom2.yaml` and ` azure_custom.yaml` to ` azure.yaml` .
429- Go to ` infra` directory
430- Rename ` main.bicep` to ` main_custom2.bicep` and ` main_custom.bicep` to ` main.bicep` . Continue with the [deploying steps](# deploying-with-azd).
441+ ---
442+
443+ # # Advanced: Deploy Local Changes
444+
445+ If you' ve made local modifications to the code and want to deploy them to Azure, follow these steps to swap the configuration files:
446+
447+ > **Note:** To set up and run the application locally for development, see the [Local Development Setup Guide](./LocalDevelopmentSetup.md).
448+
449+ ### Step 1: Rename Azure Configuration Files
450+
451+ **In the root directory:**
452+ 1. Rename `azure.yaml` to `azure_custom2.yaml`
453+ 2. Rename `azure_custom.yaml` to `azure.yaml`
454+
455+ ### Step 2: Rename Infrastructure Files
456+
457+ **In the `infra` directory:**
458+ 1. Rename `main.bicep` to `main_custom2.bicep`
459+ 2. Rename `main_custom.bicep` to `main.bicep`
460+
461+ ### Step 3: Deploy Changes
462+
463+ Run the deployment command:
464+ ```shell
465+ azd up
466+ ```
467+
468+ > **Note:** These custom files are configured to deploy your local code changes instead of pulling from the GitHub repository.
0 commit comments