📋 Note: This guide is specifically for post-deployment steps after using the AVM template. For complete deployment from scratch, see the main deployment guide.
This document provides guidance on post-deployment steps after deploying the Chat with your data - Solution accelerator from the AVM (Azure Verified Modules) repository.
Ensure you have a Deployed Infrastructure - A successful Chat with your data - Solution accelerator deployment from the AVM repository
Run the post-deployment setup script to configure the Function App client key and create PostgreSQL tables (if applicable). Open Azure Cloud Shell (Bash) and run:
az login
git clone https://github.com/Azure-Samples/chat-with-your-data-solution-accelerator.git
cd chat-with-your-data-solution-accelerator
bash scripts/post_deployment_setup.sh "<your-resource-group-name>"- After deployment is complete, navigate to your Azure App Service in the Azure portal
- Follow the detailed instructions in Set Up Authentication in Azure App Service to add authentication to your web app
- This will ensure only authorized users can access your application
-
Navigate to the admin site using the following URL pattern:
https://web-{unique-token}-admin.azurewebsites.net/ -
Upload your documents:
- Select Ingest Data from the admin interface
- Upload your documents using the drag-and-drop interface
- For testing purposes, you can use the sample data located in the
/datadirectory of this repository
-
Monitor the ingestion process:
- Wait for the documents to be processed and indexed
- Verify successful ingestion through the admin interface
-
Navigate to the main chat application using this URL pattern:
https://web-{unique-token}.azurewebsites.net/ -
Test the chat functionality:
- Start a conversation by asking questions about your uploaded documents
- Verify that the AI responds with relevant information from your data
Consider these additional configurations for enhanced functionality:
- 📚 Advanced Image Processing - Enable enhanced document processing
- 🔄 Integrated Vectorization - Configure advanced AI search features
- 💬 Conversation Flow Options - Customize the chat experience
- 🎤 Speech-to-Text - Add voice interaction capabilities

