Skip to content

Commit 1e92b88

Browse files
committed
Add team collaboration setup instructions to README
Provides steps for environment owners and team members to share and join existing Azure resources using azd. This addition helps streamline onboarding and collaboration without creating duplicate resources.
1 parent 0bae52d commit 1e92b88

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,46 @@ urlFragment: azure-search-openai-demo
1717
---
1818
-->
1919

20+
## 🤝 Team Collaboration Setup
21+
22+
**To work with existing Azure resources instead of creating new ones:**
23+
24+
### For the Environment Owner (Person who ran `azd up`):
25+
1. Export your environment configuration:
26+
```bash
27+
azd env get-values > .env.shared
28+
```
29+
2. Share the `.env.shared` file with your teammates
30+
3. Also share your environment name: `azd env list`
31+
32+
### For Team Members (Joining existing environment):
33+
1. Clone this repository:
34+
```bash
35+
git clone https://github.com/walmart-acquisition-tech/azure-search-openai-demo.git
36+
cd azure-search-openai-demo
37+
```
38+
39+
2. Import the shared environment:
40+
```bash
41+
azd env new 'env name' --subscription <subscription-id-from-shared-file>
42+
azd env set --env-file .env.shared
43+
```
44+
45+
3. Verify connection to existing resources:
46+
```bash
47+
azd show
48+
```
49+
50+
4. Run locally to test:
51+
```bash
52+
cd app
53+
./start.sh
54+
```
55+
56+
**Note:** This connects you to the same Azure resources - no need to run `azd up` again!
57+
58+
---
59+
2060
# RAG chat app with Azure OpenAI and Azure AI Search (Python)
2161

2262
This solution creates a ChatGPT-like frontend experience over your own documents using RAG (Retrieval Augmented Generation). It uses Azure OpenAI Service to access GPT models, and Azure AI Search for data indexing and retrieval.

0 commit comments

Comments
 (0)